I am trying to update few columns of a table using other table.
Please find the query below. When I am excuting it I am getting an error" Query should be an updateable query"
Expand|Select|Wrap|Line Numbers
- UPDATE Outage_Details
- SET Outage_Details.Final_Status = (Select Stafftime_Outages_Exceptions.Final_Status from Stafftime_Outages_Exceptions where Stafftime_Outages_Exceptions.Badge= Outage_Details.Badge);
Malay