hour function

Applies to: check marked yes Databricks SQL check marked yes 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