time_to_millis function
Applies to: Databricks SQL
Databricks Runtime 18 and above
remarque
Databricks Runtime 18 is newer than Databricks Runtime 18.0, 18.1, and 18.2. Features that would previously have shipped as a later numbered version now ship as dated updates to Databricks Runtime 18 instead. For details, see About unified release notes.
Returns the number of milliseconds since midnight for a TIME value.
Syntax
time_to_millis(expr)
Arguments
expr: A TIME expression.
Returns
A BIGINT.
Examples
SQL
> SELECT time_to_millis(TIME'14:30:00.5');
52200500
> SELECT time_to_millis(TIME'00:00:00');
0