美文网首页
时间字段是13位时间戳时,数据库获取数据

时间字段是13位时间戳时,数据库获取数据

作者: 奋斗滴猩猩 | 来源:发表于2018-11-21 11:09 被阅读13次

    1、包括今天在内的前10天数据

    select * from 表名 where (to_days(now())
     - to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 9;
    

    2、今天数据

    select * from 表名 where (to_days(now()) 
    - to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 0;
    

    3、今天与昨天数据

    select * from 表名 where (to_days(now()) 
    - to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 1;
    

    相关文章

      网友评论

          本文标题:时间字段是13位时间戳时,数据库获取数据

          本文链接:https://www.haomeiwen.com/subject/byvqqqtx.html