1. CREATE DATABASE
Create database is a type of command used to create new SQL database.
Here is the syntax of CREATE DATABASE statement:-
CREATE DATABASE DatabaseName;
2.DROP DATABASE
Drop database is a type of command used to drop any existing database in SQL schema.
Here is the syntax of DROP DATABASE statement:-
DROP DATABASE DatabaseName;
3.SELECT Database/USE Statement
Select database/Use statement both command is used for same purpose that is to select any existing database in SQL schema.
Here is the syntax of SELECT DATABASE/USE Statement:-
USE DatabaseName;
0 Comment(s)