minute
function
Applies to: Databricks SQL
Databricks Runtime
Returns the minute component of the timestamp in expr
. This function is a synonym for extract(MINUTES FROM expr)
.
note
When extracting fields from a TIMESTAMP
(TIMESTAMP_LTZ
), the result is based on the session timezone.
Syntax
minute(expr)
Arguments
expr
: AnTIMESTAMP
orTIMESTAMP_NTZ
expression, or aSTRING
of a valid timestamp format.
Returns
An INTEGER
.
Examples
SQL
> SELECT minute('2009-07-30 12:58:59');
58