My query:
UPDATE I_USER
SET END_DATE = (select ENDDAT
FROM TEMP_USER
WHERE USERNAME = 'ABC')
where USER_NAME = 'ABC';
This is the code for updating one row with where condition.If i want to update all the records in I_USER with the ENDDATE as per the TEMP_USER ,WHAT SHOULD I DO..?