Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
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.
The following statement returns the value 22:
SELECT MINUTE( '1998-07-13 12:22:34' );