delphi 数据库的多条件或但条件查询
你好我是刚才那位提问者就delphi数据库的多条件或但条件查询这个问题我还想请教下您下列是我的运行代码代码提示说where附近有错误发震时刻我是用的Tdatatimepi...
你好 我是刚才那位提问者 就 delphi 数据库的多条件或但条件查询这个问题 我还想请教下您
下列是我的运行代码 代码提示说where附近有错误 发震时刻 我是用的Tdatatimepicker一共有2个
开始没有改变 tempstr := 'select * from table_name where 1=1 ';这一句的时候 查询没有任何改变
之后我把全部代码改成了如下 请问我的错误在哪里
procedure TForm4.btn13Click(Sender: TObject);
var
qwe:string;
begin
qwe:='select * from DZB ';
with dmc.adqry3 do
begin
Close;
SQL.Clear;
sql.Add(qwe);
if DateToStr(dtp1.Date)<>'' then
begin
SQL.Add('where 发震时刻 >='+QuotedStr(DateToStr(dtp1.Date))) ;
end;
if DateToStr(dtp2.Date)<>'' then
begin
SQL.Add('and where 发震时刻 <='+QuotedStr(DateToStr(dtp2.Date)))
end;
if edt1.Text <>'' then
begin
SQL.Add('and where 纬度 >='+QuotedStr(edt1.Text))
end;
if edt2.Text<>'' then
begin
SQL.Add('and where 纬度 <='+QuotedStr(edt2.Text))
end;
if edt3.Text<>'' then
begin
SQL.Add('and where 经度 >='+QuotedStr(edt3.Text))
end;
if edt4.Text<>'' then
begin
SQL.Add('and where 经度 <'+QuotedStr(edt4.Text))
end;
if edt5.Text<>'' then
begin
SQL.Add('and where 深度 >='+QuotedStr(edt5.Text))
end;
if edt6.Text<>'' then
begin
SQL.Add('and where 深度 <='+QuotedStr(edt1.Text))
end;
if edt7.Text<>'' then
begin
SQL.Add('and where 震级 >='+QuotedStr(edt7.Text))
end;
if edt8.Text<>'' then
begin
SQL.Add('and where 震级 <='+QuotedStr(edt8.Text))
end;
Open;
end;
end; 展开
下列是我的运行代码 代码提示说where附近有错误 发震时刻 我是用的Tdatatimepicker一共有2个
开始没有改变 tempstr := 'select * from table_name where 1=1 ';这一句的时候 查询没有任何改变
之后我把全部代码改成了如下 请问我的错误在哪里
procedure TForm4.btn13Click(Sender: TObject);
var
qwe:string;
begin
qwe:='select * from DZB ';
with dmc.adqry3 do
begin
Close;
SQL.Clear;
sql.Add(qwe);
if DateToStr(dtp1.Date)<>'' then
begin
SQL.Add('where 发震时刻 >='+QuotedStr(DateToStr(dtp1.Date))) ;
end;
if DateToStr(dtp2.Date)<>'' then
begin
SQL.Add('and where 发震时刻 <='+QuotedStr(DateToStr(dtp2.Date)))
end;
if edt1.Text <>'' then
begin
SQL.Add('and where 纬度 >='+QuotedStr(edt1.Text))
end;
if edt2.Text<>'' then
begin
SQL.Add('and where 纬度 <='+QuotedStr(edt2.Text))
end;
if edt3.Text<>'' then
begin
SQL.Add('and where 经度 >='+QuotedStr(edt3.Text))
end;
if edt4.Text<>'' then
begin
SQL.Add('and where 经度 <'+QuotedStr(edt4.Text))
end;
if edt5.Text<>'' then
begin
SQL.Add('and where 深度 >='+QuotedStr(edt5.Text))
end;
if edt6.Text<>'' then
begin
SQL.Add('and where 深度 <='+QuotedStr(edt1.Text))
end;
if edt7.Text<>'' then
begin
SQL.Add('and where 震级 >='+QuotedStr(edt7.Text))
end;
if edt8.Text<>'' then
begin
SQL.Add('and where 震级 <='+QuotedStr(edt8.Text))
end;
Open;
end;
end; 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询