Minor edits during proofreading

This commit is contained in:
Anthony DeBarros 2021-09-27 07:39:01 -04:00
parent 5c6d6e02b0
commit b5fbb1fe2b
2 changed files with 2 additions and 1 deletions

View File

@ -159,6 +159,7 @@ WITH (FORMAT CSV, HEADER);
CREATE INDEX tpep_pickup_idx
ON nyc_yellow_taxi_trips (tpep_pickup_datetime);
-- Count the trip records
SELECT count(*) FROM nyc_yellow_taxi_trips;
-- Listing 12-8: Counting taxi trips by hour

View File

@ -322,7 +322,7 @@ AS (station text,
dec numeric(3,0)
);
-- Listing 13-20: Re-classifying temperature data with CASE
-- Listing 13-20: Reclassifying temperature data with CASE
SELECT max_temp,
CASE WHEN max_temp >= 90 THEN 'Hot'