create-sql-database

CREATE SQL DATABASE

The SQL CREATE DATABASE statement is used to create a new SQL database. Syntax The basic syntax of this CREATE DATABASE statement is as follows − CREATE DATABASE DatabaseName; Always the database name should be unique within the RDBMS. Example If you want to create a new database <testDB>, then the CREATE DATABASE statement would be as …

CREATE SQL DATABASE Read More »