mysql修改許可權

2021-07-27 18:26:44 字數 500 閱讀 3142

mysql許可權

顯示使用者許可權

mysql> show grants for jeffrey@localhost;

通常,資料庫管理員首先建立使用者,定義其非特權特徵,例如其密碼,是否使用安全連線以及對伺服器資源的訪問限制,然後使用grant來定義其許可權。alter user可用於更改現有賬戶的非特權特徵。

create user 'jeffrey'@'localhost' identified by 'mypass';

grant all on db1.* to 'jeffrey'@'localhost';

grant select on db2.invoice to 'jeffrey'@'localhost';

alter user 'jeffrey'@'localhost' with max_queries_per_hour 90;

撤銷許可權

revoke insert/all on *.* from 'jeffrey'@'localhost';

mysql修改許可權 MySql 修改許可權

mysql 賦予使用者許可權命令的簡單格式可概括為 grant 許可權 on 資料庫物件 to 使用者 一 grant 普通資料使用者,查詢 插入 更新 刪除 資料庫中所有表資料的權利。grant select on testdb.to common user grant insert on tes...

mysql 修改許可權 修改mysql許可權

關於mysql的使用者管理,筆記 1 建立新使用者 通過root使用者登入之後建立 grant all privileges on to testuser localhost identified by 123456 建立新使用者,使用者名為testuser,密碼為123456 grant all ...

mysql新建使用者,修改許可權

檢視使用者 select from mysql.user新增使用者 create user li1 localhost identified by li123456 刪除使用者 drop user li1 localhost 修改使用者名稱 rename user li1 localhost to ...