Answers for "sintaxe set password mysql"

SQL
9

mysql change user password

SET PASSWORD FOR 'user-name'@'localhost' = PASSWORD('NEW_USER_PASSWORD');FLUSH PRIVILEGES;
Posted by: Guest on April-28-2020
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

Code answers related to "SQL"

Browse Popular Code Answers by Language