SQL Select Database

If the SQL schema contains multiple databases, we must choose one before performing any operations. The USE statement is used to select any database in the SQL schema that already exists.

Syntax:

USE databaseName;

Example:

USE w3spoint_db;