SELECT count(*) FROM flights_orc WHERE year BETWEEN 2010 AND 2012;
_col0
----------
18632160
(1 row)
SELECT count(*) FROM flights_orc WHERE year >= 2010 AND year <= 2012;
_col0
----------
18632160
(1 row)
9.6
用
IS (NOT) NULL
检测值的存在
IS NULL
语句允许你检测值是否存在。它可以被认为是一种特殊类型的单目运算符。
IS NOT
NULL
是其否定形式。你可能想统计一些行,但不想统计没有值的行。这是因为这些数据可
能不完整或没有意义。
例如,要计算每年飞机的平均延误时间,必须确保只计算实际发生的航班。这一点体现在
airtime
要有一个值,下面这个查询就考虑到了这一点:
SELECT avg(DepDelayMinutes) AS delay, year
FROM flights_orc
WHERE airtime IS NOT NULL and year >= 2015
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.