Answers for "mysql user remote access grant"

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 user remote access grant"

Code answers related to "SQL"

Browse Popular Code Answers by Language