关键字:SQLServer 查询今天数据 SQLServer 查询今天及今天以后的数据
一、SQLServer查询今天的数据:
sql语句:"select * from table where date = getdate() order by date asc"
二、SQLServer查询今天及今天以后的数据:
sql语句:"select * from table where date => getdate() order by date asc"
清风夜影寒:http://qfyyh.iteye.com