~/ learn/ postgresql/ cards/ JSON & JSONB
1 of 2

From the JSONB attributes, show each book's title, its format, and its pages as an int. Columns: title, format, pages. Order by id.

From the JSONB attributes, show each book's title, its format, and its pages as an int. Columns: title, format, pages. Order by id.

Answer

SELECT title, attributes->>'format' AS format, (attributes->>'pages')::int AS pages FROM books ORDER BY id;

space flip · ← → navigate · esc to exit
NORMAL ~/memra/library/720e0077-1115-4aad-9503-461c227cb549/flashcard utf-8 LF