-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_table.sql
More file actions
65 lines (36 loc) · 1005 Bytes
/
create_table.sql
File metadata and controls
65 lines (36 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Project objective:
E commerce platform customer behaviour analysis
To find Sales, revenue, order, products, customers insights
SQL skills (SELECT, JOIN, GROUP BY, HAVING, Subquery)showcase
customer table
CREATE TABLE customer(
customer_id INT PRIMARY KEY,
customer_name VARCHAR(100),
city VARCHAR(50),
signup_date DATE
);
products table
CREATE TABLE products (
products_id INT PRIMARY KEY,
product_name VARCHAR(100),
category VARCHAR(50),
price DECIMAL(10,2)
);
orders table
CREATE TABLE orders(
order_id INT PRIMARY KEY,
customer_id INT,
order_date DATE,
FOREIGN KEY (customer_id) REFERENCES
customers(customer_id)
);
orders_items table
CREATE TABLE order_items(
order_item_id INT PRIMARY KEY,
order_id INT,
product_id INT,
quantity INT,
FOREIGN KEY (order_id) REFERENCES
orders(order_id),
FOREIGN KEY (product_id) REFERENCES
products(product_id));