In previous SQL post we had discussed about Data Definition Language and Data Manipulation Language and CREATE Command and ALTER Command.
USE Command – DDL Statements
The USE command allows you to specify the database you wish to work with within your DBMS.
The USE command used to select a database and perform sql operation on it.
The USE command specify the database to perform sql operation until we use another USE statement for some other database.
USE Command Syntax:
USE Databasename
Databasename – is the name of the selected database.
Example of USE Command
USE School
Above statement we use School database for perform some sql operation on it.