SQL CREATE Database
A database is defined as a set of structured data. Therefore, in SQL is the first step in storing data in database. The CREATE DATABASE statement is used to create a new database in SQL. Syntax CREATE DATABASE databasename; SQL CREATE DATABASE Example The SQL query creates a database called “myDB”: CREATE DATABASE myDB; Make sure you have the admin privileges before creating any database. Once…
View On WordPress












