1:建立 【database】兩種語法
a : create schema [資料庫名稱] default character set utf8 collate utf8_general_cib: create database [資料庫名稱] default character set utf8 collate utf8_general_ci
注:兩種方法執行的結果是一樣。
2:建立使用者
create user '[使用者名稱]'@'%' identified by '[使用者密碼]'
注:建立使用者 設定密碼 8位以上, % 代表匹配所有主機 此處可以設定為 localhost 或者指定ip 表示只能指定的ip 訪問, 比如【root】賬戶預設為 localhost
3:使用者授權資料許可權
grant select,insert,update,delete,create on [資料庫名稱].* to [使用者名稱];
注:* 代表整個資料庫
4:flush
flush privileges ;
注:立即啟用修改
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 ...