Posted on 2008-12-05 07:59
S.l.e!ep.¢% 阅读(6229)
评论(1) 编辑 收藏 引用 所属分类:
DataBase
select * from Placard where Placard_EndTime > datetime('now');
SELECT Placard_StartTime,strftime('%s',Placard_StartTime) , datetime('now'),strftime('%s','now') FROM Placard
差8个时区...
SELECT Placard_StartTime,strftime('%s',Placard_StartTime) , datetime('now','localtime'),strftime('%s','now','localtime') FROM Placard
上一条:大于指定时间的第一条
select title,pubtime from article where pubtime>'2008-06-15 03:35:28' order by pubtime asc Limit 1 Offset 0
貌似时间的格式有严格的要求 2008-06-15 03:35:28 前面只能用 - 后面只能用:不足二位数的补零
下一条:小于指定时间的第一条
select title,pubtime from article where pubtime<'2008-06-15 03:35:28' order by pubtime desc Limit 1 Offset 0
注意时间的精度。03:35:28 后面就没有了。
03:35:28.000