Mysql Create User With Remote Access

[Solved] Mysql Create User With Remote Access | Sql - Code Explorer | yomemimo.com
Question : mysql create user with remote access

Answered by : ahmed-ali

CREATE USER 'myuser'@'%' IDENTIFIED BY 'mypass';
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%';
flush privileges;

Source : https://stackoverflow.com/questions/16287559/mysql-adding-user-for-remote-access | Last Update : Mon, 22 Mar 21

Answers related to mysql create user with remote access

Code Explorer Popular Question For Sql