I am trying to update the titles of all the employees who ase listed as Sales Representative to say Sales Partners but when I execute this code it says no rows are effected and their titles are staying the same. Can someone help me figure out what I am doing wrong?
This is what I have.
USE Northwind
UPDATE dbo.Employees
SET Title = 'Sales Partners'
WHERE Title = 'Sales Representatives '
SELECT * FROM dbo.Employees
This is what I have.
USE Northwind
UPDATE dbo.Employees
SET Title = 'Sales Partners'
WHERE Title = 'Sales Representatives '
SELECT * FROM dbo.Employees
Comment