Files
doris/docs/documentation/en/sql-reference/sql-functions/date-time-functions/hour_EN.md
2020-01-15 21:47:07 +08:00

1.1 KiB

hour

description

Syntax

INT HOUR(DATETIME date)

Returns hour information in the time type, ranging from 0,23

The parameter is Date or Datetime type

example

mysql> select hour('2018-12-31 23:59:59');
+-----------------------------+
| hour('2018-12-31 23:59:59') |
+-----------------------------+
|                          23 |
+-----------------------------+

##keyword HOUR