Non-procedural queries
- You don't evaluate a query by "starting" with Customers,
and then "going to" Orders, and then to Items.
- Instead, you specify that all three tables are of interest
and how they connect, (e.g. Item.product_id to Product.id).
- The query optimizer figures out a good execution plan.