How to view current user in Mysql? - Mysql Views : 757
Tagged in : Mysql
Send mail vote down 0 vote down 0
If you want to see in which username you are accessing the database then use the following,

> SELECT CURRENT_USER();

For example if you are accessing through root, it will display the current user as,

> root@localhost

By - Ramya, On - 2008-06-02




    Login to add Comments .