sql 时间段查询语句
表a中有个时间字段ordertime:比如有几条记录,1999-12-13 ,1999-1-12,......
我怎么查询三个月前到现在这个时间段的记录 vb.net?时间查询?
[解决办法]
select * from a where ordertime>= datdateadd(m,-3,now())
你用的什么数据库,基本差不多,自己查查对应的时间计算函数
[解决办法]
select * from a where ordertime>= DATEADD(mm,-3,getdate()) and ordertime<= getdate()