Mysql命令建立使用者分配許可權

2021-09-21 17:25:54 字數 1022 閱讀 2774

1、--建立乙個資料庫abc 

mysql> create  database  abc; 

2、--選擇你所建立的資料庫 

mysql> use abc;

database changed 

3、--建立乙個資料庫表

首先看現在你的資料庫中存在什麼表: 

mysql> show  tables; 

empty set (0.00 sec) 

mysql> create table if not exists `runoob_tbl`(

`runoob_id` int unsigned auto_increment,

`runoob_title` varchar(100) not null,

`runoob_author` varchar(40) not null,

`submission_date` date,

primary key ( `runoob_id` )

)engine=innodb default charset=utf8;

4、--建立使用者

create user '使用者名稱'@'%' identified by '使用者密碼';

5、--使用者授權資料庫

grant select,insert,update,delete,create on 資料庫名稱.* to 使用者名稱;

或者grant select,insert,update,delete,create on * to 使用者名稱;

*代表整個資料庫

6、--立即啟用修改

flush  privileges ;

7、--取消使用者所有資料庫(表)的所有許可權

revoke all on *.* from tester; 

8、--刪除使用者

delete from mysql.user where user='tester';

9、--刪除資料庫

drop database 資料庫名稱;

mysql 建立使用者 分配許可權

mysql建立使用者的方法分成三種 insert user表的方法 create user的方法 grant的方法。1 通過create user命令進行建立使用者 指令碼 create user username host identified by password 其中密碼是可選項 例子 cr...

mysql建立使用者並分配許可權

mysql u root p 提示輸入密碼,輸入密碼後回車,進入mysql命令列 create user test identified by 123456 test為使用者名稱,123456為密碼,表示任何電腦都可以訪問,如果只為本地使用者建立,則 改為localhost grant select...

MYSQL建立使用者分配許可權筆記

使用者管理 mysql是乙個多使用者的資料庫系統,按許可權,使用者可以分為兩種 root使用者超級管理員和root使用者建立的普通使用者 mysql建立使用者 語法 create user 使用者名稱 identified by 密碼 檢視使用者 select user,host from user...