2022-08-05 20:30:04 +01:00
|
|
|
---
|
2022-08-16 11:58:34 +01:00
|
|
|
categories:
|
2022-08-05 20:30:04 +01:00
|
|
|
- Databases
|
2022-08-21 11:00:04 +01:00
|
|
|
- Programming Languages
|
2022-08-16 11:58:34 +01:00
|
|
|
tags: [SQL]
|
2022-08-05 20:30:04 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# SQL: CREATE
|
|
|
|
|
|
|
|
## Create a table (`CREATE`)
|
|
|
|
|
2022-08-16 11:58:34 +01:00
|
|
|
```sql
|
2022-08-05 20:30:04 +01:00
|
|
|
CREATE TABLE employee (
|
|
|
|
employee_id text PRIMARY KEY,
|
|
|
|
first_name text,
|
|
|
|
surname text,
|
|
|
|
address_number integer,
|
|
|
|
address_1 text,
|
|
|
|
address_2 text,
|
|
|
|
locality text,
|
|
|
|
region text,
|
|
|
|
postal_code text,
|
|
|
|
phone_number text,
|
|
|
|
days_per_week real
|
|
|
|
);
|
2022-08-16 11:58:34 +01:00
|
|
|
```
|
2022-08-05 20:30:04 +01:00
|
|
|
|
2022-08-16 11:58:34 +01:00
|
|
|
We specify the new table name first, then it's fields and their corresponding data types. We also set a primary key
|