Jump to content

SQL UPDATE error


elmas156

Recommended Posts

I'm getting the following error and I've looked everywhere but I can't figure out what's wrong... any suggestions?

 

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 'read = 'yes' WHERE messid = '1'' at line 1

 

Here's the code:

mysql_query("UPDATE messages SET read = '$yes' WHERE messid = '$messid'") or die (mysql_error());

Link to comment
https://forums.phpfreaks.com/topic/211720-sql-update-error/
Share on other sites

http://dev.mysql.com/doc/refman/5.1/en/reserved-words.html

 

Read, as you might imagine, and the point where the error occurred,  is a reserved keyword.

 

Either rename your column to something else or enclose read in back-ticks `` every time you use it in a query.

Link to comment
https://forums.phpfreaks.com/topic/211720-sql-update-error/#findComment-1103652
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.