Hi
I have 2 tables A,B.I want to update table A based on status
in table B.Iam trying to run this update stmt,but iam getting error.The same update stmt works in MSSQL.Iam new to Oracle.Any help is appreciated.
Update table A a,B b set a.status='XYZ' where a.ID=b.ID
and a.name=b.name and b.type='abc';
I have 2 tables A,B.I want to update table A based on status
in table B.Iam trying to run this update stmt,but iam getting error.The same update stmt works in MSSQL.Iam new to Oracle.Any help is appreciated.
Update table A a,B b set a.status='XYZ' where a.ID=b.ID
and a.name=b.name and b.type='abc';