對于MySQL創(chuàng)建新用戶并授權的方法
發(fā)表時間:2023-07-18 來源:明輝站整理相關軟件相關文章人氣:
[摘要]創(chuàng)建用戶的語法: Create user `username`@host [Identified by [password] `password`];Username:用戶名H...
Create user `username`@host [Identified by [password] `password`];
Username:用戶名
Host:主機名,本地主機可以用localhost或者ip地址,但是其他電腦必須用ip地址登錄遠程主機用通配符 “%”
Password:用戶密碼
例:
create user `teacher`@`localhost` identified by ‘12345’, 或者
create user `teacher`@`localhost (無密碼)
語法:
Grant priv_type on 數(shù)據(jù)庫或者數(shù)據(jù)表 to username@localhost(或者IP地址) identified by ‘123’;
使用mysql Admin修改root賬戶密碼
語法:
Mysqladmin –u root –p password “123”;
Enter password:原密碼(root)
語法:
Set password=password(“000”); //修改當前用戶密碼
Set password for teacher@localhost=password(“123”); //修改指定賬戶密碼
Drop user `studentr` @localhost;
以上就是關于MySQL建立新用戶并授權的方法的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!
學習教程快速掌握從入門到精通的SQL知識。