Say I have a table "tblItems":
*ID* | *Name*
1 | First Item
2 | Second Item
and I want this to be populated in a drop-down in a form. How would I add a row:
ALL | SHOW ALL
to become
*ID* | *Name*
1 | First Item
2 | Second Item
ALL | SHOW ALL
with one query to place in the Row Source
for the combo box? I haven't been able to find Access syntax to do this..
AFAIK, I need syntax similar to
SELECT ID, Name FROM tblItems
UNION
SELECT 0, "All" FROM SOME.SYSTEM.DUMMY.TABLE
what I can't find is Access' version of that dummy table. I don't really want to have a separate table just to store one row for one form... but from what I've been reading I may have to.
TableA
for both parts of the query, but if TableA is large, is it more efficient to use a dedicated dummy table? – Collette