标签: delphi unidac
我有一个运行时创建的查询,可能需要也可能不需要多次使用某些特定参数。如果我在像
select field1 from table1 where field2 = :a and field2 in(select field3 from table2 where field3 = :a)
当我致电
MyQuery.ParamByName('a').AsString:= 'something';
这两个参数都会被填满吗?