Database

1. Create Database

The CREATE DATABASE statement is used to create a new SQL database.

CREATE DATABASE databasename;

2. Drop Database

The DROP DATABASE statement is used to drop an existing SQL database.

DROP DATABASE databasename;

Last updated