You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Answer the following data queries. Keep track of the SQL you write by pasting it into this document under its appropriate header below. You will be submitting that through the regular fork, change, pull process.
16
34
17
-
### **Clicking the `Restore Database` button in the page will repopulate the database with the original data and discard all changes you have made**.
35
+
18
36
19
37
### find all customers that live in London. Returns 6 records.
20
38
> This can be done with SELECT and WHERE clauses
@@ -53,6 +71,20 @@ Answer the following data queries. Keep track of the SQL you write by pasting it
53
71
### 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.
54
72
> This is very similar to the previous two queries, however, it focuses on the City rather than the CustomerName
55
73
74
+
75
+
## Data Normalization
76
+
77
+
Note: This step does not use PostgreSQL!
78
+
79
+
Take the following data and normalize it into a 3NF database.
80
+
81
+
| Person Name | Pet Name | Pet Type | Pet Name 2 | Pet Type 2 | Pet Name 3 | Pet Type 3 | Fenced Yard | City Dweller |
0 commit comments