MySQL 8.0.27でユーザーに権限を付与する方法
環境
Windows10 64bit
MySQL 8.0.27
Windowsコマンドプロンプト
操作方法
1.ユーザ「infouser」を作成します
mysql> CREATE USER 'infouser'@'%' IDENTIFIED BY 'infopassword'; Query OK, 0 rows affected (0.26 sec)
2.ユーザー「infouser」について権限を付与します
mysql> grant all privileges on *.* to 'infouser'@'%' with grant option; Query OK, 0 rows affected (0.27 sec)
3.権限設定を更新します
mysql> flush privileges; Query OK, 0 rows affected (0.06 sec)