主题:datediff问题
xtlxbb
[专家分:80] 发布于 2007-08-08 08:44:00
大家好,我最近在学用函数datediff,我在数据库表中建有一时间字段,当我用当前时间减去此时间字段时<=7时,系统会作提醒,请问我怎样去实现这一功能呢?谢谢各位。
回复列表 (共1个回复)
沙发
linjipeng0 [专家分:220] 发布于 2008-05-07 15:26:00
select count(*) as cnt from (
select [判断]=case when datediff(day,当前时间,时间字段)<=7 then 1 else 0 end
from 你的表 ) as a
where a.[判断]=1
然后在代码中:
if not query.IsEmpty then
提醒
else
不提醒;
我来回复