Skip to content

Instantly share code, notes, and snippets.

-- Challenge 1: Find the 10 longest books (by pages) in the database
-- select
title, pages
from books
order by pages desc
limit 10;
-- Challenge 2: List all books published in 2020
-- select
title,