summaryrefslogtreecommitdiff
path: root/extras/appengine/examples/customers.sql
blob: 8b73850acad0b1d5e39adbd91c029e31dc3379a4 (plain)
1
USE mydatabase;SELECT orders.customer, orders.day_of_order, orders.product, orders.quantity as number_ordered, inventory.quantity as number_instock, inventory.price FROM orders JOIN inventory ON orders.product = inventory.product;