主要的论点是集中在select something from table
where to_days(now()) - to_days(date_col) <= 5; 上,我试验了半天,结果还是出错,今天看了mysql的函数,终于出来了结果,不敢独享,贴出来供大家研究,(虽然技术含量不高,别扔我柿子就行,呵呵)
mysql的to_days(date)函数是这样说明的:
传回date到公元0年的总日数,我测试了一下
mysql>select to_days(now(0));
+--------------------------+
| to_days(now()) |
+--------------------------+
| 730839 |
+--------------------------+
出来的是当前时间距离公元0年的总日数,接着我试着用上面的语句测试;
mysql>select to_days(now()) - to_days(date_col) <= 5;
出现结果:
error 1054:unknown column 'date_col' in 'field first'
此路不通了,我就试着直接把5代到date_col里去
mysql>select to_days(now()) - to_days(5);
出现结果:
+---------------------------+
|to_days(now()) - to_days(5)|
+---------------------------+
| null |
+---------------------------+
啊?不会吧?这样也不行啊?
我接着试命令
mysql>select 。。。。
突然猛的想到,嘿嘿,to_days(now())出来的是整数,我直接跟整数运算就行了,何必再to_days(date)呢?马上试验
mysql>select to_days(now()) - 5;
+--------------------------+
| to_days(now()) -5 |
+--------------------------+
| 730834 |
+--------------------------+
ok,万岁,终于得到了我想要的结果,呵呵 下面就是在php代码中用select 查询了
我存数据库向来的习惯就是dateandtime用now()直接赋值,显示的时候不用格式化,直接取出来就能用,
下面是我的一个库的部分结构
create table infomess (
infoid int(11) not null auto_increment,
topic varchar(255) not null,
……
email varchar(50),
dateandtime datetime default '0000-00-00 00:00:00' not null,
primary key (infoid)
);
这里的dateandtime是标准的日期格式,然后我要查询5天内的记录,下面是sql查询语句
$sql="select * from infomess where to_days(dateandtime) >= (to_days(now()) - 5) order by infoid desc limit $offset,$psize";
就要一个where to_days(dateandtime) >= (to_days(now()) - 5)就够了 后面的是另外的,这里的5可以设为一个变量
where to_days(dateandtime) >= (to_days(now()) - $limitdays)
然后$limitdays可以用get方式传递(多数是有get方式传递)
在你的php后面跟上?limitdays=5就行了 显示10天内也一样,$limitdasy改成10就行了
以上是利用mysql函数得到这样的结果,以上的结果都经过测试,因为时间匆忙,如果代码有什么问题,请跟帖提出,谢谢
还有朋友说利用unix戳记来得到这样的结果,请问哪位写过这样的代码,贴点出来,供大家参考比较,也可以测试判断一下php函数还是mysql函数实现的效率高
新闻热点
疑难解答