Retrieve the user name and host name associated with the MySQL account.
SELECT CURRENT_USER(); |
The CURRENT_USER() function retrieves the user name and host name of the MySQL account that authenticated the current client connection to the server.
The result is returned as a string in the UTF8 character encoding.
Tip: Also refer to the USER() function for related information.
CURRENT_USER() |
Works in: |
From MySQL version 4.0 |