I need to update table 1 with table 2 data
but when I run this it will only update the first record. I know I am missing something very simple.
Statement:
UPDATE t
SET t.EMPLOYER = S.EMPLOYER
FROM dbo.TABLE1 t,
dbo.TABLE2 s
WHERE (t.SEQUENCE = s.SEQUENCE)