In this guide, we will explain how to use the MySQL SESSION_USER function with syntax and examples.
Description
The MySQL SESSION_USER function returns the user name and host name for the current MySQL user.
Syntax
The syntax for the SESSION_USER function is:
SESSION_USER( )
Parameters or Arguments
There are no parameters or arguments for the SESSION_USER function.
Note
- The user name returned is the name of the user specified when connecting to the server.
- The host name returned is the name of the client host that the user connected from.
- The SESSION_USER and SYSTEM_USER functions are synonyms for the USER function.
- See also the CURRENT_USER function which can return a different value than the SESSION_USER function.
Applies To
The SESSION_USER function can be used in the following versions :
- MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23
Example
Let’s look at some SESSION_USER function examples and explore how to use the SESSION_USER function.
For example:
mysql> SELECT SESSION_USER();
This SESSION_USER function example would return the user name and host name for the current MySQL user.
So if the user name specified when connecting to the server was ‘root’ and the name of the client host that the user connected from was ‘imac.adglob.in:
mysql> SELECT SESSION_USER(); Result: 'root@imac.adglob.in'
Next Topic : Click Here
Pingback: MySQL: NULLIF Function | Adglob Infosystem Pvt Ltd