MySQL 建立使用者 語法

顯示使用者和可以登入的ip
select User, Host from mysql.user;

建立使用者和授權可以登入ip
註:「%」代表不限制,也可以改為「localhost」只限本機或是指定的ip
create user 'username'@'%' identified by 'password';

給予所有權限,在所有資料庫上,給使用者
註:指定資料庫就是把「*.*」改為「databaseName.* 」
grant all privileges on *.* to 'username'@'%' identified by 'password';

留言