B
Brad
Is it possible to call one query from another?
If I have a query named GetStuff like:
PARAMETERS [@ID] Long;
select stuff from table_name where id=@ID;
How do I call this from another query? I saw another post
that showed this method:
select * from Call GetStuff(1);
but that doesn't work.
If this is not possible, is it possible to call a VBA
function from a query?
If I have a query named GetStuff like:
PARAMETERS [@ID] Long;
select stuff from table_name where id=@ID;
How do I call this from another query? I saw another post
that showed this method:
select * from Call GetStuff(1);
but that doesn't work.
If this is not possible, is it possible to call a VBA
function from a query?