Trying to update a mysql employee table where the Group column if it contains the word staff it changes the contents of the column to a 4. What am I doing wrong?
UPDATE employee SET Group = "4" WHERE Group LIKE "Staff";
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.
GROUPis a reserved word. Quote it with backticks: