MINUTE function (ODBC compatible)
Syntax
MINUTE ( time_expression )
Description
The scalar function MINUTE returns the minute value in the argument as a short integer in the range of 0 - 59.
Example
SELECT *
FROM arrivals
WHERE MINUTE (in_time) > 10 ;
Notes