Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the hour component of a timestamp. This function is a synonym for extract(HOUR FROM expr)
.
Syntax
hour(expr)
Arguments
expr
: A TIMESTAMP expression.
Returns
An INTEGER.
Examples
> SELECT hour('2009-07-30 12:58:59');
12