From de9e098d0c136ac2b3df3bfbe8bfb168160fe6c5 Mon Sep 17 00:00:00 2001 From: fikretellek Date: Tue, 28 May 2024 00:16:59 +0100 Subject: [PATCH] week3 done --- E-Commerce/readme.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/E-Commerce/readme.md b/E-Commerce/readme.md index 37580cce..ba3e2835 100644 --- a/E-Commerce/readme.md +++ b/E-Commerce/readme.md @@ -46,12 +46,48 @@ erDiagram Write SQL queries to complete the following tasks: - [ ] List all the products whose name contains the word "socks" + - [ ] List all the products which cost more than 100 showing product id, name, unit price, and supplier id + - [ ] List the 5 most expensive products + - [ ] List all the products sold by suppliers based in the United Kingdom. The result should only contain the columns product_name and supplier_name + - [ ] List all orders, including order items, from customer named Hope Crosby + - [ ] List all the products in the order ORD006. The result should only contain the columns product_name, unit_price, and quantity + - [ ] List all the products with their supplier for all orders of all customers. The result should only contain the columns name (from customer), order_reference, order_date, product_name, supplier_name, and quantity + ## Acceptance Criteria