desc
is a reserved keyword in MySQL - documented here: http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html
If you insist on using desc
you should escape it using the back tick character (`) - as described here: How do I escape reserved words used as column names? MySQL/Create Table
I'll recommend you to change the desc
column name to e.g. description
, as I believe it is best practice never to include reserved keywords in the db schema.