//SELECTDatabaseis used in MySQL toselect a particular databasetowork with. This queryis used when multiple databasesare available with MySQL Server.
//You can useSQL command USEtoselect a particular database.
Syntax:
USE database_name;
//suppose database name is employee
use employee;