Skip to content

Commit 8204445

Browse files
authored
Update README.md
1 parent 670f3db commit 8204445

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ Answer the following data queries. Keep track of the SQL you write by pasting it
4747
4848
> There is more information about the COUNT clause on [W3 Schools](https://www.w3schools.com/sql/sql_count_avg_sum.asp)
4949
50-
## Stretch Goals
51-
5250
### list customers names and the number of orders per customer. Sort the list by number of orders in descending order. _Ernst Handel_ should be at the top with 10 orders followed by _QUICK-Stop_, _Rattlesnake Canyon Grocery_ and _Wartian Herkku_ with 7 orders each.
5351
> This can be done by adding an ORDER BY clause to the previous answer
5452
5553
### list orders grouped by customer's city showing number of orders per city. Returns 58 Records with _Aachen_ showing 2 orders and _Albuquerque_ showing 7 orders.
5654
> This is very similar to the previous two queries, however, it focuses on the City rather than the CustomerName
5755
56+
## Stretch Goals
57+
5858
### delete all customers that have no orders. Should delete 17 (or 18 if you haven't deleted the record added) records.
5959
> This is done with a DELETE query
6060

0 commit comments

Comments
 (0)