1. 程式人生 > 資料庫 >mysql總結之簡單命令

mysql總結之簡單命令

查詢使用者

select User,Host,authentication_string from mysql.user;

 授權

grant select privileges on aaa.bbb to "abc"@"%" identified by "123456"; #建立一個只有對aaa庫下的bbb表查詢許可權、可以在任何ip登陸的abc使用者
grant all privileges on *.* to "user"@"%" identified by "123456"; #同理,建立所有許可權(除grant)的使用者