Note
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ შესვლა ან დირექტორიების შეცვლა.
ამ გვერდზე წვდომა ავტორიზაციას მოითხოვს. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
Applies to:
Databricks SQL
Databricks Runtime 18 and above
Note
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.
Creates a TIME value from the number of milliseconds since midnight.
Syntax
time_from_millis(expr)
Arguments
expr: An integral numeric expression representing milliseconds since midnight (0 to 86399999).
Returns
A TIME.
Examples
> SELECT time_from_millis(52200500);
14:30:00.500000
> SELECT time_from_millis(0);
00:00:00