CURRENT_USER
Returns the user name and host name combination for the account that the server used to authenticate the current client. This account determines your access privileges. The return value is a string in the utf8 character set.
Analyze Syntax
func.current_user()
Analyze Examples
func.current_user()
┌─────────────────────┐
│ func.current_user() │
├─────────────────────┤
│ 'root'@'%' │
└─────────────────────┘
SQL Syntax
CURRENT_USER()
SQL Examples
SELECT CURRENT_USER();
┌────────────────┐
│ current_user() │
├────────────────┤
│ 'root'@'%' │
└────────────────┘
Last modified April 22, 2024 at 7:30 PM EST: updated context functions (14d970e)