SECOND
Learn how to use the SECOND date/time function in PlaidCloud Lakehouse. Returns the second from a datetime - see syntax, examples, and output.
Returns the second from a datetime.
Analyze Syntax
func.second(<datetime>)
Analyze Examples
func.second('2024-06-15 14:30:45')
┌────┐
│ 45 │
└────┘
SQL Syntax
SECOND(<datetime>)
SQL Examples
SELECT SECOND('2024-06-15 14:30:45');
┌────┐
│ 45 │
└────┘