命令: create schema [資料庫名稱] default character set utf8 collate utf8_general_ci;
說明:採用create schema和create database建立資料庫的效果一樣。
2、建立使用者
命令: create user '[使用者名稱]'@'%' identified by '[使用者密碼]';
說明:密碼8位以上,包括:大寫字母、小寫字母、數字、特殊字元
%:匹配所有主機,該地方還可以設定成『localhost』,代表只能本地訪問,例如root賬戶預設為『localhost『 ;username : 你將建立的使用者名稱,host : 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost, 如果想讓該使用者可以從任意遠端主機登陸,可以使用萬用字元%.password : 該使用者的登陸密碼,密碼可以為空,如果為空則該使用者可以不需要密碼登陸伺服器.
例子: create user 'dog'@'localhost' identified by '123456';
create user 'pig'@'192.168.1.101_' idendified by '123456';
create user 'pig'@'%' identified by '123456';
create user 'pig'@'%' identified by '';
create user 'pig'@'%';
3、使用者授權資料庫
命令: grant select,insert,update,delete,create on [資料庫名稱].* to [使用者名稱];
命令:grant privileges on databasename.tablename to 'username'@'host'
說明:*代表整個資料庫
privileges : 使用者的操作許可權,如select , insert , update 等(詳細列表見該文最後面).如果要授予所的許可權則使用all.;databasename -:資料庫名,tablename:表名,如果要授予該使用者對所有資料庫和表的相應操作許可權則可用*表示, 如*.*.
例子: grant select, insert on test.user to 'pig'@'%';
grant all on *.* to 'pig'@'%';
注意:用以上命令授權的使用者不能給其它使用者授權,如果想讓該使用者可以授權,用以下命令:
grant privileges on databasename.tablename to 'username'@'host' with grant option;
4、啟用修改
flush privileges ;
5、取消使用者所有資料庫(表)的所有許可權
revoke all on *.* from tester;
6、刪除使用者
delete from mysql.user where user='tester';
7、刪除資料庫
drop database [schema名稱|資料庫名稱];
--我在mysql root中建立了乙個資料庫,在資料庫中建立了乙個使用者,
--並授權使用者對資料庫中幾張表的訪問許可權。
--之後登陸使用者,為什麼無法訪問表
8、查詢使用者建立是否正確
select user,host from mysql.user;--檢視a@localhost是否存在
如果沒有則刪除之前的使用者,重新新建使用者,並將%替換為localhost
如:create user 'eims_report'@'localhost';
mysql建立資料庫,建立使用者
建立資料庫 create database test use test 建立使用者 create user test identified by test 給使用者賦權 grant all on test.to test 建立資料庫 命令 create database databasename 例...
MySQL建立資料庫與建立使用者以及授權
銘久部落格 1 create schema 資料庫名稱 default character set utf8 collate utf8 general ci 建立資料庫 採用create schema和create database建立資料庫的效果一樣。2 create user 使用者名稱 ide...
MySQL建立資料庫與建立使用者以及授權
1 create schema 資料庫名稱 default character set utf8 collate utf8 general ci 建立資料庫 採用create schema和create database建立資料庫的效果一樣。2 create user 使用者名稱 identifie...