Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do a very simple UPDATE with PHP, like this:

$nlk = $lk + "1";
mysql_query("UPDATE posts SET like = '".$nlk."' WHERE id = '".$cid."'") or die(mysql_error());

$lk is a the value gotten from the field like, which is default 0. $cid is a value from an id field, which is on auto_increment.

I get this error:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'like = '1' WHERE id = '45'' at line 1

What is the issue here?

share|improve this question

8 Answers

up vote 2 down vote accepted

Use this (added ticks (`) around the column name):

mysql_query("UPDATE posts SET `like` = '".$nlk."' WHERE id = '".$cid."'") or die(mysql_error());

Better yet, don't use reserved words as table/column names.

share|improve this answer

like is a reserved word. You need to surround it with back-ticks

mysql_query("UPDATE posts SET `like` = '".$nlk."' WHERE id = '".$cid."'") or die(mysql_error());
share|improve this answer

like is a reserved keyword. See here for a list of reserved keywords in mysql. If you enclose your like-Column in backticks (`), the error should go away.

share|improve this answer

like is a MySQL keyword. It's most likely this is the case. Either try escaping the field name

mysql_query("UPDATE posts SET `like` = '".$nlk."' WHERE id = '".$cid."'") or die(mysql_error());

Or, if you're still getting the same error, change the field name to something else

share|improve this answer

Like is a keyword in SQL. This could cause your error. Change your column name, or, at least, add the table name in front of your "like".

share|improve this answer

because LIKE is a keyword. use backticks around like.

share|improve this answer

like is a mysql reserved word

you have to put this column name in back quotes

mysql_query("UPDATE posts SET `like` = '".$nlk."' WHERE id = '".$cid."'") or die(mysql_error());
share|improve this answer

The hint is in your error message, near WHERE id = '45"

This query will probably run if replace the double quotation mark with a single.

-gz

My bad, I missed the leading single in front of the reserved word like, and was viewing with non-monospace font so the two singles at the end looked like a double. Dur.

share|improve this answer
1  
It is in single quotes. – jackbot Mar 28 '11 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.