customers
PKIX
id
SERIAL
name
VARCHAR(100)
UQIX
email
VARCHAR(255)
phone
VARCHAR(20)
created_at
TIMESTAMP
updated_at
TIMESTAMP
Schemas that scale. Queries that fly.
Schema Explorer
15 tables in an expandable workspace
Query Runner
SELECT o.id, c.name, c.email, o.total_amount, o.status, o.created_at FROM orders o JOIN customers c ON o.customer_id = c.id ORDER BY o.created_at DESC LIMIT 20;