Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add erratum #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -173,5 +173,5 @@ has been passionate about computer science since he was a 13-year-old, his first
#### Errata
* Page 82 (Dropping databases, first paragraph): **to drop a table** _should be_ **to drop a database**
* Page 581 (Section 5, heading): **The PostegreSQL System** _should be_ **The PostgreSQL System**

* Page 151 (The ROW_NUMBER function, first query): The query _should be_ `select category, count(*) over w`**`, row_number() over w`**` from posts WINDOW w as (partition by category) order by category`**;