LoginSignup
0
0

More than 1 year has passed since last update.

mysql 5.7の使い方

Posted at

随時更新します

ユーザの作成と、どこからでもアクセスできる権限

例)examユーザでパスワードがpass

create user 'exam'@'%' identified by 'pass';

例)examユーザはどこからでもアクセス可能

grant all privileges on *.* to 'exam'@'%';
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0