Answers for "sql create user and force it to change password on first loogin"

SQL
5

update sql user password

-- In case the UPDATE command returns "Column 'Password' is not updatable" run
ALTER USER 'root'@'localhost' IDENTIFIED BY 'newPassword';
flush privileges;
Posted by: Guest on June-12-2020

Code answers related to "sql create user and force it to change password on first loogin"

Code answers related to "SQL"

Browse Popular Code Answers by Language