Answers for "identified by error mysql"

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 "identified by error mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language