in an AdoQuery, my sql is:
select id from table1
where name = :aName
union
select id from table2
where name = :aName
and in the object inspector, I got 2 'aName' parameters in Parameters
property altough the name is same.
my question is: how to make them into one parameter?
thanks a lot
jack