如何添加新用戶到你的mysql教程數據庫教程
本文章主要講一下如何添加新用戶到你的mysql數據庫哦,因為一個mysql可能有很多數據庫我們要給每個不同的數據庫開權限,開用戶,這個就有必要了。
create user user [identified by [password] 'password']
實例
create user 'user1'@'localhost' identified by 'pass1';
如果你檢查mysql.user表,您可以在裡面找到一個新的紀錄。請注意,所有priviliges載所以這個用戶可以在數據庫無關號。為了增加一些preiviliges我們可以使用grant命令如下
grant select,insert,update,delete on *.* to 'user1'@'localhost';
我們只添加了最重要的priviliges給用戶,但上面無法創建表,
grant all on *.* to 'user1'@'localhost';
grant all on *.* to 'user2'@'localhost' identified by 'pass1';
可以向表中保存數據
insert into user (host,user,password) values('localhost','user3',password('pass3'));