SQL SELECT Database

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 javawithease_db;

No comments: