SECOND
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 │
└────┘