Answers for "mysql create new user with remote access select"

SQL
1

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 create new user with remote access select"

Code answers related to "SQL"

Browse Popular Code Answers by Language