云日志服务 LTS-使用时间函数将日志时间字段转换为指定格式:把日志中的时间转换成指定格式

时间:2024-10-30 17:09:29

把日志中的时间转换成指定格式

把日志中的时间字段从字符转化成指定格式。

  1. 使用date_parse函数将时间字段,从字符串转化成年-月-日 时:分:秒。
  2. 使用date_format函数截取年-月-日部分。
  3. 使用group by进行分组。
    • 日志样例:
      time:2017-05-17 09:45:00
    • SQL语句样例:
      * | select date_format (date_parse(time,'%Y-%m-%d %H:%i:%S'), '%Y-%m-%d') as day, count(1) as uv group by day order by day asc
support.huaweicloud.com/bestpractice-lts/lts_07_0068.html