SECOND function (ODBC compatible)
Syntax
SECOND ( time_expression )
Description
The scalar function SECOND returns the seconds in the argument as a short integer value in the range of 0 - 59.
Example
SELECT *
FROM arrivals
WHERE SECOND (in_time) <= 40 ;
Notes