MINUTE
Description
Extracts the minute (0–59) from a Datetime value, based on the context user’s local time zone.
Syntax
MINUTE(datetime) -> Integer
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| datetime | Datetime | Yes | The Datetime value from which the minute is extracted. |
Example
MINUTE(NOW())
-- Returns 55 (if now = 2024-09-18T15:25:22.418Z and user is in GMT+5:30).