张
张丽敏
Unregistered / Unconfirmed
GUEST, unregistred user!
在ADOQuery写一SQL语句:
select PART from
where PART =1
union all
select PART from
where PART =2
在Delphi 赋参数:
ADOQuery.Close;
ADOQuery.Parameters.ParamByName('P1').Value := '12345';
ADOQuery.Parameters.ParamByName('P2').Value := '12345';
ADOQuery.Open;
这样可以运行,
其实P1,P2都赋同一值.
能否只用一个(P1)参数?
(我用 select PART from
where PART =1
union all
select PART from
where PART =1
这样不行,运行的时候第二个P1它不能识别.)
ADOQuery中,怎样才能使变量可重用?
谢谢!!
select PART from
where PART =1
union all
select PART from
where PART =2
在Delphi 赋参数:
ADOQuery.Close;
ADOQuery.Parameters.ParamByName('P1').Value := '12345';
ADOQuery.Parameters.ParamByName('P2').Value := '12345';
ADOQuery.Open;
这样可以运行,
其实P1,P2都赋同一值.
能否只用一个(P1)参数?
(我用 select PART from
where PART =1
union all
select PART from
where PART =1
这样不行,运行的时候第二个P1它不能识别.)
ADOQuery中,怎样才能使变量可重用?
谢谢!!