mysql如何查前两天的数据?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql如何查前两天的数据?相关的知识,希望对你有一定的参考价值。
如何实现?
参考技术A //如果数据表中有代表输入时间的insertdate字段,基本可以实现//首先取得前两天的日期:
$yesterday=date("Y-m-d H:i:s",strtotime(\'-1 day\'));
$thedaybeforeyesterday=date("Y-m-d H:i:s",strtotime(\'-2 day\'));
$sql=" select * from yourtable where insertdate between $yesterday and $thedaybeforeyesterday order by id asc"; 参考技术B select * from Table where datediff(now(),'你表里的日期字段')=2
以上是关于mysql如何查前两天的数据?的主要内容,如果未能解决你的问题,请参考以下文章