B
Basil via AccessMonster.com
Is it possible to combine the following three queries into a single object in
Access, saving keystrokes of having to run three separate queries?
UPDATE TempTbl SET Proctype = 'Encounter'
WHERE Proc IN ('a','b','c');
UPDATE TempTbl SET Proctype = 'EstablishedVisit'
WHERE Proc IN ('d','e','f');
UPDATE TempTbl SET Proctype = 'NewVisit'
WHERE Proc IN ('g','h','i');
Access, saving keystrokes of having to run three separate queries?
UPDATE TempTbl SET Proctype = 'Encounter'
WHERE Proc IN ('a','b','c');
UPDATE TempTbl SET Proctype = 'EstablishedVisit'
WHERE Proc IN ('d','e','f');
UPDATE TempTbl SET Proctype = 'NewVisit'
WHERE Proc IN ('g','h','i');