Someone has handed bunch of my Microsoft SQL queries. They work fine, except the ones that refer to other queries.
For example:
SELECT Equip FROM qryStorage UNION SELECT Equip FROM qryBrokenStock .........
where qryStorage and qryBrokenStock are other MS Acces Queries. I am turning these into a JSP and need plain SQL to do this (without saved queries.) How can one accomplish this?
For example:
SELECT Equip FROM qryStorage UNION SELECT Equip FROM qryBrokenStock .........
where qryStorage and qryBrokenStock are other MS Acces Queries. I am turning these into a JSP and need plain SQL to do this (without saved queries.) How can one accomplish this?