We use WHERE to choose which rows we want from a table. It is one of the first SQL clauses we learn, but the rows we get still depend on how we write the condition. For example, order_status <> 'canceled’ removes canceled orders. It also removes orders whose status is NULL, even though we didn’t ask it to.
In this module, we’ll try that filter and see why the missing statuses disappear. After that, we’ll use WHERE to find orders from one day in São Paulo when the timestamps are stored in UTC.



