Answers for "mysql identified by syntax error"

SQL
0

mysql identified by syntax error

# You don't use IDENTIFIED BY in GRANT queries, it's used in CREATE USER
CREATE USER 'root'@'%' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
Posted by: Guest on May-19-2021

Code answers related to "mysql identified by syntax error"

Code answers related to "SQL"

Browse Popular Code Answers by Language