Reference to the minute() function
Summary
minute(<timeZone> [,<tsExpression])
Returns the minute of the hour for the timestamp specified by timeZome. The values returned are integer only and are in the range 0-59.
Parameters
Parameter | Description |
---|---|
timeZone |
String identifier or alias for a time zone, such as "US/Pacific" . Names are case sensitive and must be enclosed in quotes. For a list of valid time zone identifiers and their aliases, see http://joda-time.sourceforge.net/timezones.html.
|
tsExpression | Optional expression to which you want to apply this function. |
Description
The minute()
standard time function returns the minute of the hour for the timestamp specified by timeZome
. The values returned are integer only and are in the range 0-59.
You can optionally pass in an expression.
Examples
The following two single-stat charts show how many minutes after the hour it is in Berlin and in Darwin using the following 2 queries:
minute("Australia/Darwin")
minute("Europe/Berlin")