Search posts...
select c.first_name, o.order_date, o.order_details, o.total_order_cost from orders o join customers c on o.cust_id = c.id and first_name in ('Jill', 'Eva') order by c.id;
silver