先来行得分:MSSQL日期查询
我想查询日期大于或等于EDIT1中指定日期的所有记录.
求SQL语句如何写?
sSQL:= 'select * from tt where SetupDate > = '+edit1.Text
不对呀
[解决办法]
sSQL:= 'select * from tt where SetupDate > = '+QuotedStr( edit1.Text );
发布时间: 2012-03-25 20:55:17 作者: rapoo
先来行得分:MSSQL日期查询
我想查询日期大于或等于EDIT1中指定日期的所有记录.
求SQL语句如何写?
sSQL:= 'select * from tt where SetupDate > = '+edit1.Text
不对呀
[解决办法]
sSQL:= 'select * from tt where SetupDate > = '+QuotedStr( edit1.Text );