select 和 insert 語句是允許最佳化和修復所需的最低 MySQL 使用者權限。
您可以使用以下語法向使用者授予插入和選擇權限-
grant insert,select on yourDatabaseName.* to 'yourUserName'@'localhost';
首先,這是建立使用者的查詢-
mysql> create user 'Emma'@'localhost' identified by 'Emma123'; Query OK, 0 rows affected (0.26 sec)
這是為上述使用者提供資助的查詢-
mysql> grant insert,select on web.* to 'Emma'@'localhost'; Query OK, 0 rows affected (0.21 sec)
這裡是顯示上述使用者的所有授權的查詢-
mysql> show grants for 'Emma'@'localhost';
這將產生以下輸出-
+-------------------------------------------------------+ | Grants for Emma@localhost | +-------------------------------------------------------+ | GRANT USAGE ON *.* TO `Emma`@`localhost` | | GRANT SELECT, INSERT ON `web`.* TO `Emma`@`localhost` | +-------------------------------------------------------+ 2 rows in set (0.00 sec)
以上是允許優化和修復的最低 MySQL 使用者權限是多少?的詳細內容。更多資訊請關注PHP中文網其他相關文章!