Skip to content

Instantly share code, notes, and snippets.

@HYUCK7
HYUCK7 / bookstore_queries.sql
Created September 21, 2025 14:45
bookstore_queries.sql
-- Challenge 1: Find the 10 longest books
select title
from books
group by title
order by max(pages) desc
limit 10;
-- Challenge 2: List all books published in 2020
select title from books where title is not null and published_date = 2020;