Answers for "mysql command line create a new user with remote access"

SQL
2

mysql create user with remote access

CREATE USER 'myuser'@'%' IDENTIFIED BY 'mypass';
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%';
flush privileges;
Posted by: Guest on March-15-2021

Code answers related to "mysql command line create a new user with remote access"

Code answers related to "SQL"

Browse Popular Code Answers by Language