I am trying to run the following query,
UPDATE candidate_assets SET show = 1 WHERE show = 0;
to change all the rows (show) that are set to 0 to be equal to 1, the show column is just basic INT column, what am I doing wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SHOWis a keyword in MySQL. Try escaping references to your column by surrounding them with backtick`marks: