Hi, Sorry this is a bit of a noob question. I have the following select statement. I would like to update the values of ContactAssociate from 'Bob' to 'Jane'. Is it possible to do this?
SELECT TOP (1500) ContactID, ContactNotes, ContactAssociate, ContactAppointment
FROM tb_Contact
WHERE (ContactAssociate = 'Bob') AND (ContactAppointment = 0)
Any help appreciated.