mysql关于time时间戳相关使用

1.当前时间:

select now();

应用:

select * from game where time > now();

 

2.时间的偏移:

向前偏移10天:

select date_sub(now(),interval 10 day);

向后偏移1年:

select date_sub(now(),interval -1 year);

 应用:

select * from game where time < date_sub(now(),interval -1 year);

 

3.时间格式转换:从日期时间格式转为数字格式

select now()+0;

select curdate()+0

应用:时间函数的字符串连接

select concat("%",(select curdate()+0));

应用:时间函数like语句:

select * from game where timesolt like (select concat((select curdate()+0),"%"));

posted @ 2022-07-02 07:36  Mrwhite86  阅读(101)  评论(0)    收藏  举报