Ok I searched through many different places unfortunately it might be easier to ask,
I have to select some data then set salary to increase by 10 percent where my criteria is on another table this is my code
Select E.Lastname, E.Salary, J.EEO1Classification from Employee as E
Join JobTitle as J
on E.JobTitleID = J.JobTitleID
Update Employee
set Salary = (Salary * .10) + Salary
where [JobTitle.EEO1Classification] = 'Office/Clerical'
Where am I going wrong?
I think this is what you may be trying to achive. Basically an
UPDATEusing aJOINto theJobTitletableMySQL
Alternate syntax