USER

You are viewing an old version of this article. View the current version here.

Syntax

USER()

Description

Returns the current MariaDB user name and host name as a string in the utf8 character set.

Note that the value of USER() may differ from the value of CURRENT_USER(), which is the user used to authenticate the current client. CURRENT_ROLE() returns the current active role.

SYSTEM_USER() is a synonym for USER().

Examples

SELECT CURRENT_USER(), USER();
+----------------+----------------------+
| CURRENT_USER() | USER()               |
+----------------+----------------------+
| amarokuser@%   | amarokuser@localhost |
+----------------+----------------------+

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.