MySQLにrootユーザーでログインする
grant all privileges on データベース名.* to 'ユーザー名'@'ホスト名';
flush privileges;
例:
grant all privileges on sampledb.* to 'testuser'@'localhost';
flush privileges;
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
MySQLにrootユーザーでログインする
grant all privileges on データベース名.* to 'ユーザー名'@'ホスト名';
flush privileges;
例:
grant all privileges on sampledb.* to 'testuser'@'localhost';
flush privileges;
Register as a new user and use Qiita more conveniently
Go to list of users who liked