2013-09-25 41 views
-1

的SQL語法錯誤我從來沒有見過這個問題。我想做一個MySQL查詢(插入,更新,選擇),但MySQL提供了一個錯誤。有關``

我的查詢:

SELECT * FROM option 

和錯誤:

[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 'option' at line 1]

,但如果我把``

SELECT * FROM `option` 

它的工作。我能做什麼?

+0

你忘了分號? – Hbcdev

+4

保留字? http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html – henrik

+0

是的你是對的,它的保留字。非常感謝你 – saidOnder

回答

1

Option是在MySQL(SQL)保留關鍵字避免它。

所以,使用反引號(`)後,它不被視爲關鍵字。