Answers for "mysql access user"

SQL
2

mysql user access to database

GRANT ALL PRIVILEGES ON dbTest.* To 'user'@'hostname' IDENTIFIED BY 'password';
Posted by: Guest on April-19-2020
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

Code answers related to "mysql access user"

Code answers related to "SQL"

Browse Popular Code Answers by Language