Answers for "select user mysql"

SQL
8

show list of users in mysql

//To show all data use following query
select * from mysql.user;
// To show user and host use following query
select User,Host from mysql.user;
Posted by: Guest on October-22-2020
8

see all users mysql

mysql> select host, user, password from mysql.user;
Posted by: Guest on April-07-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 "SQL"

Browse Popular Code Answers by Language