~/ 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/9cb904a7-70bf-4f6d-b6d0-6dd7308a41ac/flashcard utf-8 LF