I am trying to update a table by joining the values with another table. Here's my query so far.
UPDATE LOGIN SET LOGIN.DISABLED_IND = 'N', LOGIN.DREASON = 'Test'
FROM CONTACT
WHERE CONTACT.CONTACT_ID = LOGIN.CONTACT_ID
AND CONTACT.RID ='abc'
When i run this i get this
[Error Code: 933, SQL State: 42000] ORA-00933: SQL command not properly ended
Can you please help. Your help will be appreciated.
Thanks