Mysql開啟group資料表報錯的問題
阿新 • • 發佈:2020-12-21
使用.sql檔案匯入資料庫後,我檢視資料庫group表時出現錯誤ERROR 1064(42000),其他表均未出現錯誤。
錯誤提示為:ERROR 1064 (42000): 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 ‘group’ at line 1
搜尋問題後發現,group在mysql中屬於特殊名稱,所以呼叫時應該加上符號" ` "宣告為普通表格。
mysql> select * from `group`;
參考文章:
1、完美解決 ERROR 1064 (42000): You have an error in your SQL…
https://www.jianshu.com/p/a0e6f1e1ac73