Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 02_activities/assignments/assignment2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ SELECT
product_id,
product_name,
product_size,
product_category_id,
product_category_id,
product_qty_type,
CURRENT_TIMESTAMP AS snapshot_timestamp
FROM product
Expand All @@ -206,7 +206,8 @@ This can be any product you desire (e.g. add another record for Apple Pie). */
INSERT INTO product_units (
product_id,
product_name,
product_category_id,
product_size,
product_category_id,
product_qty_type,
snapshot_timestamp
)
Expand All @@ -215,6 +216,7 @@ VALUES (
'Matcha latte',
'10 oz',
3,
'unit',
CURRENT_TIMESTAMP);


Expand Down