learning postgresql 11 a beginner s guide to buil
iltering results: ```sql SELECT FROM books WHERE price > 20; ``` Aggregations and Grouping Count total sales per book: ```sql SELECT books.title, SUM(sales.quantity) AS total_sold FROM sales JOIN books ON sales.book_id = bo