按照时间分组时一般是按照年、月、日进行分组,不会把时分秒也算进去,所以需要把时间戳提取出所需要的时间段,本质上是把时间戳格式化成对应形式的字符串,这个过程需要用to_char(timestamp, text)
函数
exp:
// 按照日期分组SELECT to_char(create_time, 'YYYY-MM-DD') AS date, count(id)FROM the_record_table GROUP BY date
按照月份分组:
to_char(timestamp,'YYYY-MM')
按年分组:
to_char(timestamp,'YYYY')
按照小时分组:
to_char(timestamp,'YYYY-MM-DD HH24')