Skip to content

Commit

Permalink
Fixing 07 quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mattahrens committed Dec 8, 2023
1 parent f247a7c commit d0eb76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/07-Advanced-sql-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Notice that we are adding an **ORDER BY** as the end of the query to sort the da

This will make use of the **WHERE** clause to filter out the ratings that we want. Here's the query:
```
query = """"
query = """
SELECT `Book-Rating`, count(*) as total
FROM ratings_df
WHERE `Book-Rating` >= 6 and `Book-Rating` <= 10
Expand Down

0 comments on commit d0eb76d

Please sign in to comment.