共計 1273 個字符,預計需要花費 4 分鐘才能閱讀完成。
這篇文章主要介紹“怎么解決 MySQL 中 ERROR 1054 (42S22) 報錯問題”,在日常操作中,相信很多人在怎么解決 MySQL 中 ERROR 1054 (42S22) 報錯問題問題上存在疑惑,丸趣 TV 小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么解決 MySQL 中 ERROR 1054 (42S22) 報錯問題”的疑惑有所幫助!接下來,請跟著丸趣 TV 小編一起來學習吧!
添加用戶時報錯
mysql grant all privileges on *.* to aaa @ % identified by aaa123
ERROR 1054 (42S22): Unknown column plugin in mysql.user
升級 mysql 數據庫時,mysql.user 表沒有升級,導致字段缺少,
通過一下方法修改 mysql.user 表
mysql use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql ALTER TABLE user ADD Create_tablespace_priv ENUM(N , Y) NOT NULL DEFAULT N AFTER Trigger_priv;
Query OK, 14 rows affected (0.08 sec)
Records: 14 Duplicates: 0 Warnings: 0
mysql ALTER TABLE user ADD plugin CHAR(64) NULL AFTER max_user_connections;
Query OK, 14 rows affected (0.09 sec)
Records: 14 Duplicates: 0 Warnings: 0
mysql ALTER TABLE user ADD authentication_string TEXT NULL DEFAULT NULL AFTER plugin;
Query OK, 14 rows affected (0.05 sec)
Records: 14 Duplicates: 0 Warnings: 0
mysql ALTER TABLE user ADD password_expired ENUM(N , Y) NOT NULL DEFAULT N AFTER authentication_string;
Query OK, 14 rows affected (0.04 sec)
Records: 14 Duplicates: 0 Warnings: 0
mysql grant all privileges on *.* to aaa @ % identified by aaa123
Query OK, 0 rows affected (0.00 sec)
到此,關于“怎么解決 MySQL 中 ERROR 1054 (42S22) 報錯問題”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注丸趣 TV 網站,丸趣 TV 小編會繼續努力為大家帶來更多實用的文章!