stocktondesigns
Technical User
I'm having a problem getting an Update Query to work. I would like to change the checkbox value of field called EmailOptin to 0 from 1, however, when I execute this I get the following message:
Query executed, however no records were found
This error doesn't make sense to me because I correctly qualified the table and field.
My SQL is:
UPDATE dbo.tblCustomers
SET EmailOptin = 0
Any ideas why this does not work.
Query executed, however no records were found
This error doesn't make sense to me because I correctly qualified the table and field.
My SQL is:
UPDATE dbo.tblCustomers
SET EmailOptin = 0
Any ideas why this does not work.