PostgreSQL - Indexing Strategies
You have a table
products with columns id, category, and price. You often run this query:SELECT * FROM products WHERE category = 'books' AND price < 20;Which indexing strategy will most improve query speed without slowing inserts too much?
