的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`
它的工作。我能做什麼?
你忘了分號? – Hbcdev
保留字? http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html – henrik
是的你是對的,它的保留字。非常感謝你 – saidOnder