How do I know my MySQL name?
You can find the current user name with CURRENT_USER() function in MySQL. for Ex: SELECT CURRENT_USER(); How do I find my MySQL database name? Open the Command Prompt and navigate to the bin folder of your MySQL Server installation directory. Then connect to the server using the mysql -u root -p command. Enter the password and execute the SHOW DATABASES; …