mysql 給使用者設定許可權

2022-09-03 12:15:09 字數 422 閱讀 1887

grant   all   on   wordpress.*   to  wordpress@'10.0.0.%'  identified  by  'wordpress';

all    全部許可權

wordpress@'10.0.0.%'     使用者(沒有該使用者則建立新使用者)

wordpress.*   作用物件

1. *.*   當前mysql下面所有的的庫和表,範圍是全域性的

2. wordpress.*    單庫級別:wordpress下所有的表範圍

3. wordpress.t1   單錶級別:只對t1表設定許可權

grant   select,update,delete,insert  on   oldboy.*   to   oldboy@'10.0.0.%'   identified  by  '123';

mysql給使用者賦許可權

mysql grant 許可權1,許可權2,許可權n on 資料庫名稱.表名稱 to 使用者名稱 使用者位址 identified by 連線口令 例子 grant all privileges on to root localhost identified by root 許可權1,許可權2,許可...

mysql怎麼給許可權 mysql怎麼給使用者加許可權

mysql給使用者加許可權的方法 首先建立使用者,為 create user 使用者名稱 identified by 密碼 然後給使用者分配許可權,為 grant 許可權 on 資料庫.資料表 to 使用者 主機名 mysql給使用者加許可權的方法 一 mysql下建立新的使用者 語法 create...

Mysql 使用者許可權設定

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