MySQL CURRENT_USER Function

Example

Return the user name and host name for the MySQL account:

SELECT CURRENT_USER();

Definition and Usage

The CURRENT_USER() function returns the user name and host name for the MySQL account that the server used to authenticate the current client.

The result is returned as a string in the UTF8 character set.

 

Syntax

CURRENT_USER()

Continue reading MySQL CURRENT_USER Function