MySQL——增加新用戶
提問人:劉旭39發(fā)布時(shí)間:2020-10-13
格式:grant select on 數(shù)據(jù)庫.* to 用戶名@登錄主機(jī) identified by \"密碼\"
例1、增加一個(gè)用戶test1密碼為abc,讓他可以在任何主機(jī)上登錄,并對所有數(shù)據(jù)庫有查詢、插入、修改、刪除的權(quán)限。首先用以root用戶連入MySQL,然后鍵入以下命令:
grant select,insert,update,
delete on *.* to test2@localhost identified by \"abc\";
如果你不想test2有密碼,可以再打一個(gè)命令將密碼消掉。
grant select,insert,update,delete on mydb
.* to test2@localhost identified by \"\";
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評論>>