Tôi làm điều đó như thế này cho cơ sở dữ liệu có tên foo_db:
create database foo_db;
create user foo_user identified by 'foo_password';
grant all on foo_db.* to 'foo_user'@'%';
flush privileges;
Tôi làm điều đó như thế này cho cơ sở dữ liệu có tên foo_db:
create database foo_db;
create user foo_user identified by 'foo_password';
grant all on foo_db.* to 'foo_user'@'%';
flush privileges;