L
lixp
Unregistered / Unconfirmed
GUEST, unregistred user!
var
date,date1:string;
begin
date:=datetostr(datetimepicker1.date);
date1:=datetostr(datetimepicker1.date);
query1.close;
query1.sql.clear;
query1.sql.add('select bh 编号,xm 姓名,jl 奖励,rq 日期,yy 备注 from jqtable2 where rq>='''+date+''' and rq<='''+date1+''' and jl>'+''''+'0'+''''+'order by bh' );
query1.open;
end;
以上程式为什么可以通过但却根本不查询,如果不要 rq>='''+date+''' and rq<='''+date1+''' 查询很正常。以上数据为mssql
date,date1:string;
begin
date:=datetostr(datetimepicker1.date);
date1:=datetostr(datetimepicker1.date);
query1.close;
query1.sql.clear;
query1.sql.add('select bh 编号,xm 姓名,jl 奖励,rq 日期,yy 备注 from jqtable2 where rq>='''+date+''' and rq<='''+date1+''' and jl>'+''''+'0'+''''+'order by bh' );
query1.open;
end;
以上程式为什么可以通过但却根本不查询,如果不要 rq>='''+date+''' and rq<='''+date1+''' 查询很正常。以上数据为mssql