Can I modify the mysql syntax SET more of a sample script:
UPDATE login SET id='21' AND ip='789' WHERE nama='ariel'
Please corrected if I am 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.
I don’t think you should use
ANDlike that. Instead I think it should be something more like a list like this:ANDis typically used as part of aWHEREclause, not in the list of fields to be updated.