In case multiple databases exist in the SQL schema we have to select the database before performing any operation. The USE statement is used to select any existing database in SQL schema.
Syntax:
USE databaseName;
Example:
USE w3schools_db;
Next Topic: SQL DROP Database with example.
Previous Topic: SQL SHOW Database List with example.