What is the command for viewing databases in mysql?
After you have connected to the MySQL server, you can use the following command to view databases:
This command will display the names of all databases.
Example output:
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
2. Using the command “USE database_name;” will switch to the specified database, allowing you to carry out other operations related to that database. Replace “database_name” with the name of the database you want to use.
Example output:
Database changed
This command can also be used to view a list of databases.
Example output:
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
Please note that before executing the above command, you must first login to the MySQL server and have the appropriate permissions to access the database information.