-
-
Save codecademydev/2f452f3dffe8bd4326ac5cc207a6dcb3 to your computer and use it in GitHub Desktop.
Codecademy export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1 */ | |
SELECT * FROM customers LIMIT 10; | |
SELECT * FROM orders LIMIT 10; | |
SELECT * FROM books LIMIT 10; | |
/* 2 */ | |
SELECT * FROM pg_indexes WHERE tablename = 'customers'; | |
SELECT * FROM pg_indexes WHERE tablename = 'orders'; | |
SELECT * FROM pg_indexes WHERE tablename = 'books'; | |
/* 3 */ | |
CREATE INDEX idx_orders_customer_id ON orders (customer_id); | |
CREATE INDEX idx_orders_book_id ON orders (book_id); | |
/* 4 */ | |
EXPLAIN ANALYZE SELECT original_language, title, sales_in_millions | |
FROM books | |
WHERE original_language = 'French'; | |
/* 5 */ | |
SELECT pg_size_pretty (pg_total_relation_size('books')); | |
/* 6 */ | |
CREATE INDEX idx_books_language_title_sales | |
ON books (original_language, title, sales_in_millions); | |
/* 7 */ | |
/* | |
Add "EXPLAIN ANALYZE" in front of the query to analyze and compare the runtime. | |
*/ | |
/* 8 */ | |
DROP INDEX idx_books_language_title_sales; | |
/* 10 */ | |
DROP INDEX IF EXISTS idx_orders_customer_id; | |
DROP INDEX IF EXISTS idx_orders_book_id; | |
/* 9 */ | |
SELECT NOW(); | |
\COPY orders FROM 'orders_add.txt' DELIMITER ',' CSV HEADER; | |
SELECT NOW(); | |
/* 10 */ | |
CREATE INDEX idx_orders_customer_id ON orders (customer_id); | |
CREATE INDEX idx_orders_book_id ON orders (book_id); | |
/* 11 */ | |
CREATE INDEX idx_customers_first_name_email ON customers (first_name, email_address); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment