-
Notifications
You must be signed in to change notification settings - Fork 145
Open
Description
In which task and step of the codelab can this issue be found?
Task 6, section "Logical operators with WHERE clauses"
Describe the problem
The task requests the execution of the following query:
"SELECT * FROM email
WHERE folder = 'inbox' AND read = false;"
The column "read", however, is of type INTEGER, and not BOOLEAN, and thus the query fails.
The correct query would be
"SELECT * FROM email
WHERE folder = 'inbox' AND read = 0;"
Steps to reproduce?
- Go to the link
- Reach the section "Logical operators with WHERE clauses"
- See error in point 1.
Metadata
Metadata
Assignees
Labels
No labels