diff --git a/Chapter_05/Chapter_05.sql b/Chapter_05/Chapter_05.sql index b892da4..5d5bd66 100644 --- a/Chapter_05/Chapter_05.sql +++ b/Chapter_05/Chapter_05.sql @@ -83,7 +83,7 @@ FROM 'C:\YourDirectory\supervisor_salaries.csv' WITH (FORMAT CSV, HEADER); -- Check the data -SELECT * FROM supervisor_salaries LIMIT 2; +SELECT * FROM supervisor_salaries ORDER BY id LIMIT 2; -- Listing 5-6 Use a temporary table to add a default value to a column during -- import @@ -104,7 +104,7 @@ FROM supervisor_salaries_temp; DROP TABLE supervisor_salaries_temp; -- Check the data -SELECT * FROM supervisor_salaries LIMIT 2; +SELECT * FROM supervisor_salaries ORDER BY id LIMIT 2; -- Listing 5-7: Export an entire table with COPY