Skip to content

Commit

Permalink
updated sample metadata to include column descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
rishsriv committed Aug 18, 2023
1 parent 305fc1b commit a8ff91b
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions metadata.txt
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
CREATE TABLE products (
product_id INTEGER PRIMARY KEY,
name VARCHAR(50),
price DECIMAL(10,2),
quantity INTEGER
product_id INTEGER PRIMARY KEY, -- Unique ID for each product
name VARCHAR(50), -- Name of the product
price DECIMAL(10,2), -- Price of each unit of the product
quantity INTEGER -- Current quantity in stock
);

CREATE TABLE customers (
customer_id INTEGER PRIMARY KEY,
name VARCHAR(50),
address VARCHAR(100)
customer_id INTEGER PRIMARY KEY, -- Unique ID for each customer
name VARCHAR(50), -- Name of the customer
address VARCHAR(100) -- Mailing address of the customer
);

CREATE TABLE salespeople (
salesperson_id INTEGER PRIMARY KEY,
name VARCHAR(50),
region VARCHAR(50)
salesperson_id INTEGER PRIMARY KEY, -- Unique ID for each salesperson
name VARCHAR(50), -- Name of the salesperson
region VARCHAR(50) -- Geographic sales region
);

CREATE TABLE sales (
sale_id INTEGER PRIMARY KEY,
product_id INTEGER,
customer_id INTEGER,
salesperson_id INTEGER,
sale_date DATE,
quantity INTEGER
sale_id INTEGER PRIMARY KEY, -- Unique ID for each sale
product_id INTEGER, -- ID of product sold
customer_id INTEGER, -- ID of customer who made purchase
salesperson_id INTEGER, -- ID of salesperson who made the sale
sale_date DATE, -- Date the sale occurred
quantity INTEGER -- Quantity of product sold
);

CREATE TABLE product_suppliers (
supplier_id INTEGER PRIMARY KEY,
product_id INTEGER,
supply_price DECIMAL(10,2)
supplier_id INTEGER PRIMARY KEY, -- Unique ID for each supplier
product_id INTEGER, -- Product ID supplied
supply_price DECIMAL(10,2) -- Unit price charged by supplier
);

===
Expand Down

0 comments on commit a8ff91b

Please sign in to comment.