How can we know the username of the Mysql through Mysql command line prompt?
By enter into the Mysql command line prompt
Enter the Password : ******
MySql > select User from mysql.user; // give this command and give enter
-----
|user |
-------
|root |
|d1 |
|d5 |
|d14 |
-------
5 rows in set
The list of username is displayed in the command line prompt...
 
 
Comments
Post a Comment