Returns the minute part of a value. The argument must be a time, timestamp, time duration, or timestamp duration.
Example:
Using the CL_SCHED sample table, select all classes with a duration less than 50 minutes.
SELECT * FROM CL_SCHED WHERE HOUR(ENDING - STARTING) = 0 AND MINUTE(ENDING - STARTING) < 50