In trying to run the following code; Access is asking me for parameter values.
I'd like to run a query on Market and exclude any Hospitals that were included in Mailing8_21.
I'm having complications running sql statements as my handbook presents. Could anyone refer me to a publication that as sql expressions Access can read?
SELECT [Hospital], [Title], [FName], [LName], [Street], [City], [State], [Zip]
FROM Market
WHERE (State IN ('NY'))
and Hospital NOT IN (Mailing8_21.Hospital);
Thank you
I'd like to run a query on Market and exclude any Hospitals that were included in Mailing8_21.
I'm having complications running sql statements as my handbook presents. Could anyone refer me to a publication that as sql expressions Access can read?
SELECT [Hospital], [Title], [FName], [LName], [Street], [City], [State], [Zip]
FROM Market
WHERE (State IN ('NY'))
and Hospital NOT IN (Mailing8_21.Hospital);
Thank you