Answers for "grant privileges mysql to database 1064"

SQL
0

grant privileges mysql to database 1064

mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'PASSWORD';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;
Posted by: Guest on January-28-2022

Code answers related to "grant privileges mysql to database 1064"

Code answers related to "SQL"

Browse Popular Code Answers by Language