当前位置: 主机百科 » 资源 » 技术 » 正文

mysql查询当月数据

mysql查询当月数据:

1
  select * from table where datetime > unix_timestamp(concat(date_format(now(),'%Y-%m-'),'01'));

 

1
  datetime:表中的时间戳字段;  

 

1
  unix_timestamp(concat(date_format(now(),'%Y-%m-'),'01'):当月第一天的开始时间戳。

未经允许不得转载:主机百科 » mysql查询当月数据

相关文章