TechnoLearnAcademy

TECHNOLEARN

SQL Create DATABASE

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

Syntax:      

               CREATE DATABASE databaseName

Example:

   Objective: In this example, we will create a new database called DBTechno
                CREATE DATABASE DBTechno;

Example:

   Objective: In this example, we will show how to access the database. In order to access the database use USE                                         command.
                     USE DBTechno;
Scroll to Top