how to see your username in mysql code example
Example 1: mysql list users on ubuntu
SELECT User FROM mysql.user;
Example 2: how to check username in mysql command line
SELECT User, Host FROM mysql.user;
Example 3: SELECT User,Host FROM mysql.user;
SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';