MySQL中新增使用者,新資料庫,使用者授權,刪除使用者,修改密碼(注意每行後邊都跟個;表示一個指令語句結束):
1.新使用者
登录MYSQL: @>mysql -u root -p @>密码
建立使用者:
mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
注意:此處的"localhost",是指該使用者只能在本地登錄,無法在另一台機器上遠端登入。如果想要遠端登入的話,將"localhost"改為"%",表示在任何一台電腦上都可以登入。也可以指定某台機器可以遠端登入。
然後登入:
mysql>exit; @>mysql -u test -p @>输入密码 mysql>登录成功
2.為使用者授權
授權格式:grant 權限on 資料庫.* to 使用者名稱@登入主機identified by "密碼";
登入MYSQL(有ROOT權限),這裡以ROOT身分登入:
@>mysql -u root -p @>密码
先為使用者建立一個資料庫(testDB):
mysql>create database testDB;
授權test使用者擁有testDB資料庫的所有權限(某個資料庫的所有權限):
mysql>grant all privileges on testDB.* to test@localhost identified by '1234'; mysql>flush privileges;//刷新系统权限表
格式:grant 權限on 資料庫.* to 使用者名稱@登入主機identified by "密碼";
如果想指定部分權限給一用戶,可以這樣來寫:
mysql>grant select,update on testDB.* to test@localhost identified by '1234'; mysql>flush privileges; //刷新系统权限表
#授權test用戶擁有所有資料庫的某些權限:
mysql>grant select,delete,update,create,drop on . to test@"%" identified by "1234";
//test使用者對所有資料庫都有select,delete,update,create,drop 權限。
//@"%" 表示對所有非本地主機授權,不包含localhost。 (localhost位址設為127.0.0.1,如果設為真實的本機位址,不知道是否可以,沒有驗證。)
//對localhost授權:加上一句grant all privileges on testDB.* to test @localhost identified by '1234';即可。
3.刪除使用者
@>mysql -u root -p @>密码 mysql>Delete FROM user Where User='test' and Host='localhost'; mysql>flush privileges; mysql>drop database testDB; //删除用户的数据库
刪除帳號及權限:
>drop user 用户名@'%'; >drop user 用户名@ localhost;
4.修改指定使用者密碼
@>mysql -u root -p @>密码 mysql>update mysql.user set password=password('新密码') where User="test" and Host="localhost"; mysql>flush privileges;
5.列出所有資料庫
mysql>show database;
6.切換資料庫
mysql>use '数据库名';
7.列出所有表格
mysql>show tables;
8.顯示資料表結構
mysql>describe 表名;
9.刪除資料庫與資料表
mysql>drop database 数据库名; mysql>drop table 数据表名;
以上是Mysql新增使用者以及授權等操作詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!