S
Steve
I have a volunteer table and a uniform table, they share a primary key of
id#. Unfortunately, when I built the uniform table and populated from the
volunteer table, I had the id# field set as an auto number so the number in
the uniform table is incorrect for some rows.
I'm trying to use an update query to update the id# in the uniform table if
the id# <> the id# from the volunteer table, but I can't get it to work.
Here's what I've tried:
UPDATE UNIFORMS
SET UNIFORMS.ID = VOLUNTEER.ID
WHERE UNIFORM.ID <> VOLUNTEERS.ID
Any help would be greatly appreciated.
THANKS!
id#. Unfortunately, when I built the uniform table and populated from the
volunteer table, I had the id# field set as an auto number so the number in
the uniform table is incorrect for some rows.
I'm trying to use an update query to update the id# in the uniform table if
the id# <> the id# from the volunteer table, but I can't get it to work.
Here's what I've tried:
UPDATE UNIFORMS
SET UNIFORMS.ID = VOLUNTEER.ID
WHERE UNIFORM.ID <> VOLUNTEERS.ID
Any help would be greatly appreciated.
THANKS!