hi,
when i use this WHERE clause,
UPDATE physician
SET physician_practiceArea_1 = 'heart attack'
WHERE physician_spec = ('Cardiology' OR 'Invasive Cardiology' or 'Noninvasive and Invasive Cardiology')
the entire column of physician_spec is updated (not just cardiology), without regard to the where clause. if i break it out and run each separately, it works fine.
for example,
.... WHERE physician_spec = cardiology
is there a way to make modiy that WHERE statement to make it work? Thanks.
Mike