MySQL Forums
Forum List  »  Quality Assurance

Re: Probable MySql Bug
Posted by: David Shrewsbury
Date: December 30, 2007 05:00PM

This is not a bug. The word 'group' is a reserved word in MySQL:

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

If you wish to use a reserved word as a column name, you will have to always surround the column name with backticks (like `group`), as described here:

http://dev.mysql.com/doc/refman/4.1/en/identifiers.html

Options: ReplyQuote


Subject
Views
Written By
Posted
3072
December 20, 2007 07:12AM
2140
December 26, 2007 04:05AM
Re: Probable MySql Bug
2019
December 30, 2007 05:00PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.