|< < 42 > >|

Queries

Who placed an order in April 2012?

select c.name from customer c, ord o where c.customer_id = o.customer_id and o.ord_date between 'April 1, 2012' and 'April 30, 2012'

|< < 42 > >|