G
Guest
I have an update query the SQL appears below.
UPDATE Employees SET Employees.Opportunities = 9
WHERE (((Employees.Employment_Length)>12) AND ((Employees.Normal_Shift)="2"
Or (Employees.Normal_Shift)="3")) OR (((Employees.Employment_Length)>12) AND
((Employees.Normal_Shift) Like "2%")) OR (((Employees.Employment_Length)>12)
AND ((Employees.Normal_Shift) Like "3%"));
It wants to update 52 records. When I change it to a select query, It
selects 100 records which I believe is correct and I want it to do. What am
I missing?
UPDATE Employees SET Employees.Opportunities = 9
WHERE (((Employees.Employment_Length)>12) AND ((Employees.Normal_Shift)="2"
Or (Employees.Normal_Shift)="3")) OR (((Employees.Employment_Length)>12) AND
((Employees.Normal_Shift) Like "2%")) OR (((Employees.Employment_Length)>12)
AND ((Employees.Normal_Shift) Like "3%"));
It wants to update 52 records. When I change it to a select query, It
selects 100 records which I believe is correct and I want it to do. What am
I missing?