Answers for "how we can change password of sql database"

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
0

why we have to set the password for my sql server

The root password will allows a user to have its database secure from
all other databases or people If you don't set the password then as 
anyone can access your database.
Posted by: Guest on September-07-2021

Code answers related to "how we can change password of sql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language