Vol. I · A Postgres HandbookTwelve chapters · · 756 queries

The Query & the Schema

A reading-room reference for writing PostgreSQL by hand — selects to window functions, with the schema in plain view.

FrontChaptersSchemaColophon
Chapters · Basic SELECT · Query 016 / 136
EasyBasic SELECT

Select all orders with NULL shipped_at (not shipped)

The query

SQL
SELECT order_id, cust_id, order_date, status
FROM orders
WHERE shipped_at IS NULL;
Tested against PostgreSQL 16

Note

“Always use IS NULL / IS NOT NULL. Never use = NULL.

Tables referenced

  • orders6 cols

← Previous

Select customers from India or USA

Next →

Show total revenue from all orders

The Query & the Schema

Set in Fraunces and Inter Tight. Printed on parchment, in oxblood and ink. No tracking, no accounts, no JavaScript on the answer pages beyond what your browser needs to copy a query.

Compiled for Postgres 16 · MMXXVI