跳到主要内容

TO_YYYYMMDDHH

Formats a given date or timestamp into a string representation in the format "YYYYMMDDHH" (Year, Month, Day, Hour).

Syntax

TO_YYYYMMDDHH(<expr>)

Arguments

ArgumentsDescription
<expr>date/datetime,date as default

Return Type

Returns an unsigned 64-bit integer (UInt64) in the format "YYYYMMDDHH".

Examples

SELECT to_yyyymmddhh('2023-11-12 09:38:18.165575'), to_yyyymmddhh(to_date('2023-11-12 09:38:18.165575'));
┌─────────────────────────────────────────────┐─────────────────────────────────────────────────────┐
│ to_yyyymmddhh('2023-11-12 09:38:18.165575') │to_yyyymmddhh(to_date('2023-11-12 09:38:18.165575')
│ UInt32 │ UInt32 │
├─────────────────────────────────────────────┤─────────────────────────────────────────────────────┤
20231112002023111200
└─────────────────────────────────────────────┘─────────────────────────────────────────────────────┘

SELECT to_yyyymmddhh(to_timestamp('2023-11-12 09:38:18.165575'));

┌───────────────────────────────────────────────────────────┐
│ to_yyyymmddhh(to_timestamp('2023-11-12 09:38:18.165575'))
│ UInt32 │
├───────────────────────────────────────────────────────────┤
2023111209
└───────────────────────────────────────────────────────────┘

开始使用 Databend Cloud
低成本
快速分析
多种数据源
弹性扩展
注册