日期:2014-05-17  浏览次数:20842 次

SQL语句问题!在线等
帮忙看下,下面语句可对!
取未来的记录
zlsj是字符型.
select   *   from   admin_zl   where     cdate(zlsj)> =getdate()     order   by   id   desc

------解决方案--------------------
SQL SERVER 里有getdate()函数的
cdate()是VBS的不是SQL里的
你为什么不把字段改成DATETIME型的呢?
这样判断起来很简单啊

如果你不想换 只有这样写了

sql = "select * from admin_zl where " '& cdate(zlsj) & " ' > =getdate() order by id desc "