MySQL Tutorial
SELECT Database is used in MySQL to select a particular database to work with
This query is used when multiple databases are available with MySQL Server..
USE database_name;
Let's take an example to use a database name "first_db".
USE first_db;