建立使用者的語法:
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(賦權的同時) 建立使用者
##語法:
Grant priv_type on 資料庫或資料表to username@localhost(或IP位址) identified by '123';使用mysql Admin修改root帳號密碼
#語法:
Mysqladmin –u root –p password “123”; Enter password:原密码(root)
使用set密令修改普通使用者密碼(mysql的指令)
Set password=password(“000”); //修改当前用户密码
Set password for teacher@localhost=password(“123”); //修改指定账户密码
Drop user `studentr` @localhost;
以上是關於MySQL建立新使用者並授權的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!