
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Is there a way to know your current username in MySQL?
Yes, you can use the method CURRENT_USER() to know the current username in MySQL.
The above method returns the username that can be used to authenticate the client connection.
The query is as follows −
mysql> select CURRENT_USER();
The following is the output −
+----------------+ | CURRENT_USER() | +----------------+ | root@% | +----------------+ 1 row in set (0.00 sec)
Or you can use USER() method from MySQL. The query is as follows −
mysql> select user();
Here is the output −
+----------------+ | user() | +----------------+ | root@localhost | +----------------+ 1 row in set (0.00 sec)
- Related Articles
- Is there a way to select a value which matches partially in MySQL?
- Is there an easy way to rename a table in a MySQL procedure?
- In MySQL, is there a way to turn column records into a list?
- Is there a way to name columns in an INSERT statement in MySQL?
- Is there a way to make a list from a MySQL table in Java?
- Is there a way to retrieve the minimum value of fields in MySQL?
- Is there a way to subtract number of days from a date in MySQL?
- Is there a way to create a MySQL “alias” while creating a VIEW?
- Is there a way in MySQL to reverse a boolean field with a single query?
- Is there any easy way to add multiple records in a single MySQL query?
- Is there a way to convert Integer field into Varchar without losing data in MySQL?
- Is there a way to list collections in MongoDB?
- How to get the current username and directory in Golang?
- Is there a way to list all the reserved words in MySQL using the MySQL command-line utility?
- Is there any way to use values from a JSON object in a MySQL Select statement?\n

Advertisements