12
Answers

Update table with values from another table

This is the query I ran but it gave me error message:
 
UPDATE B_EMPLOYEES b
SET SUBURB=(SELECT SUBURB FROM B_PERSAL_DUMP a
                          WHERE  a.IDNUM=b.id_number)
Answers (12)