Answers for "how to connect user in mysql"

SQL
1

mysql user

CREATE USER 'pdam'@'localhost' IDENTIFIED BY 'pdamP@ssw0rd'; # create user
GRANT ALL PRIVILEGES ON `pdam_db`.* TO 'pdam'@'localhost'; # set db access
FLUSH PRIVILEGES; # Reload
Posted by: Guest on August-06-2021
0

login as a user mysql

mysql -u yourUsername -p
Posted by: Guest on September-01-2021

Code answers related to "how to connect user in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language