mysql建立使用者
語法:mysql>grant 許可權 on 資料庫名.表名 to 使用者名稱@登入主機 identified by "密碼";
例1:
mysql>grant select,insert,update,delete,execute on *.* to [email protected] identified by "123456";
例2:
mysql>grant all privileges on *.* to root@'%' identified by "";
mysql刪除使用者
語法:mysql>delete from user where user='使用者名稱' and host=『登入主機』;
mysql>flush privileges;
例1:
mysql>delete from user where user='root' and host='127.0.0.1';
mysql>flush privileges;
mysql資料庫使用者許可權管理
知識點總結 三句話 1.create user golden localhost identified by gd2017 2.grant all on test.to golden localhost 3.flush privileges 解釋 1 create user 語句用於建立使用者 及密...
資料庫使用者管理
語法 create user 使用者名稱 ip位址 identified by 密碼 舉例 create user tom 192.168.101 identified by 123 建立除本機以外其他ip第能登入 create user 使用者名稱 identified by 密碼 領域 web開...
資料庫使用者管理
語法 create user 使用者名稱 ip位址 identified by 密碼 舉例 create user tom 192.168.101 identified by 123 建立除本機以外其他ip第能登入 create user 使用者名稱 identified by 密碼 grant a...