From d0e4597efeb408fcd1eede8fa0594a9052ad628a Mon Sep 17 00:00:00 2001 From: Matt Ahrens Date: Sat, 4 Nov 2023 07:04:12 -0500 Subject: [PATCH] Finishing Lesson 08 --- docs/08-Joining-data-in-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08-Joining-data-in-python.md b/docs/08-Joining-data-in-python.md index c2ee818..e649ca8 100644 --- a/docs/08-Joining-data-in-python.md +++ b/docs/08-Joining-data-in-python.md @@ -35,7 +35,7 @@ When you are doing a join, the fields that you specify as part of the join condi The join key between the books and ratings datasets is the `ISBN` field while the join key between the ratings and users datasets is the `User-ID` field. -## Practice: +## Practice: Writing join queries Now that we've walked through what a join is and understand the join keys for our books data, let's write some join queries in SQL. For our first query, let's answer the question for what are the books that have the most ratings.