MySQL MINUTE() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MySQL MINUTE() Function

❮ MySQL Functions

Example

Return the minute portion of a date value:

SELECT MINUTE("2017-06-20 09:34:00");
Try it Yourself »

Definition and Usage

The MINUTE() function returns the minute portion of a date value (from 0 to 59).

Syntax

MINUTE(date)

Parameter Values

Parameter Description
date Required. The time or datetime value from which to extract the minute

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

More Examples

Example

Return the minute portion of a date value: 

SELECT MINUTE("23:59:59");
Try it Yourself »

❮ MySQL Functions