clickhouse -日期类函数*

日期类函数

函数 用途
toYear() 取日期或时间日期的年份
toYear(toDateTime(‘2018-12-11 11:12:13’)) toYear(toDate(‘2018-12-11’))
返回 2018 
函数 用途
toMonth() 取日期或时间日期的月份
toMonth(toDateTime(‘2018-12-11 11:12:13’)) toMonth(toDate(‘2018-12-11’))	
返回 12
函数 用途
oDayOfMonth() 取日期或时间日期的天(1-31)
toMonth(toDayOfMonth(‘2018-12-11 11:12:13’)) toMonth(toDayOfMonth(‘2018-12-11’))
返回 11

toDayOfWeek()
取日期或时间日期的星期(星期一为1,星期日为7)。

toDayOfWeek(toDateTime(‘2018-12-11 11:12:13’)) toDayOfWeek(toDate(‘2018-12-11’))
返回 2

toHour()
取时间日期的小时

toHour(toDateTime(‘2018-12-11 11:12:13’))
返回 11

toMinute()
取时间日期的分钟

toMinute(toDateTime(‘2018-12-11 11:12:13’))	
返回 12
t

oSecond()
取时间日期的秒

toSecond(toDateTime(‘2018-12-11 11:12:13’))	
返回 13

toMonday()
取时间日期最近的周一(返回日期)

toMonday(toDate(‘2018-12-11’)) toMonday(toDateTime(‘2018-12-11 11:12:13’))	
返回 2018-12-10

toTime()
将时间日期的日期固定到某一天,保留原始时间

toTime(toDateTime(‘2018-12-11 11:12:13’))	
返回 1970-01-02 11:12:13

你可能感兴趣的:(clickhouse)