Answers for "create password for user in backend mysql"

SQL
1

mysql set password for user

# `SET PASSWORD FOR <user> = PASSWORD('<plaintext_password>')` is deprecated
SET PASSWORD FOR <user> = '<plaintext_password>';
FLUSH PRIVILEGES;
Posted by: Guest on July-08-2020
0

how to pass password mysql command line

mysql -u user -ppassword
password should not have any space with -p
Posted by: Guest on November-23-2020

Code answers related to "create password for user in backend mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language