Skip to content

MINUTE ^v2.6.131

Returns the minute component of a given time value.

js
MINUTE(time_value)
MINUTE(time_value)

Parameters

  • time_value - The time value from which to extract the minute component.

Examples

js
MINUTE("13:30:45")
MINUTE("13:30:45")

Result: 30

Note: Returns the minute component (30) of the given time value (13:30:45).

js
MINUTE(0.75)
MINUTE(0.75)

Result: 0

Note: Returns the minute component (0) of the given time value (0.75), which represents 6:00:00 PM.