查询语句每次查询昨天的记录
data列的类型是varchar(50),然后格式为2013-05-07,我想每次执行的时候,都查询的是昨天的数据,我在网上找的代码select * from test where datediff('d',Date,now)=1
提示我datediff 指定的参数 1 无效。出错,不知道这语句应该怎么写?请指教
[解决办法]
try this,
select * from test
where datediff(d,[Date],getdate())=1