Returns the minute component of a TIMESTAMP value.
MINUTE( timestamp-expression )
timestamp-expression The TIMESTAMP value.
SMALLINT
The value returned is the minute portion of the TIMESTAMP expression, a SMALLINT value between 0 and 59.
SQL/2008 Vendor extension.
The following statement returns the value 22.
SELECT MINUTE( '1998-07-13 12:22:34' );