Creating user
Creating a user is 4 step process i.e
1. Check the list of available databases in MySQL
show databases ;
2. Select the database on which you want to create the user.
use MySQL ;
3. Execute the below script to created the desired user.
Creating a user is 4 step process i.e
1. Check the list of available databases in MySQL
show databases ;
2. Select the database on which you want to create the user.
use MySQL ;
3. Execute the below script to created the desired user.
CREATE USER 'KRISH' @ 'localhost' IDENTIFIED BY 'KRISH' ,'CAMROON' @ 'localhost' IDENTIFIED BY 'CAMROON';
4. Verify whether user has been created or not.
SELECT * FROM USER;
No comments:
Post a Comment