Can someone help me with this sql statement to run on Oracle? I am new to Oracle. I tried different ways, but getting syntax error. With this statement I get Missing SET keyworkd error, if I remove employee, I get invalid column name for emp_id.
update emp_bonus, employee
set emp_bonus.bonus = '555'
where emp_bonus.emp_id = employee.emp_id and emp_bonus.bonus_id = '101';