1. 程式人生 > 其它 >Mysql開啟group資料表報錯的問題

Mysql開啟group資料表報錯的問題

技術標籤:運維mysqlsql資料庫

使用.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