YouTip LogoYouTip

Sql Create Db

```html SQL CREATE DATABASE Statement

SQL CREATE DATABASE Statement

– Not Only Learning Technology, But Also Dreams!

SQL Tutorial

SQL Advanced Tutorial

SQL Functions

SQL CREATE DATABASE Statement

The CREATE DATABASE statement is used to create a database.

SQL CREATE DATABASE Syntax

CREATE DATABASE dbname;

SQL CREATE DATABASE Example

The following SQL statement creates a database named "my_db":

CREATE DATABASE my_db;

After the database is created, you can check it using the following command in the database list:

SHOW DATABASES;
```
← Sql Create TableSql Insert Into Select β†’