select customer.gender as c0, product_class.product_family as c1, product_class.product_department as c2, customer.education as c3, time_by_day.the_year as c4 from customer as customer, sales_fact_1997 as sales_fact_1997, product as product, product_class as product_class, time_by_day as time_by_day where sales_fact_1997.customer_id = customer.customer_id and product.product_class_id = product_class.product_class_id and sales_fact_1997.product_id = product.product_id and sales_fact_1997.time_id = time_by_day.time_id and (customer.gender = 'M') and ((product_class.product_family = 'Drink' and product_class.product_department = 'Beverages') or (product_class.product_family = 'Food' and product_class.product_department = 'Baked Goods')) and (customer.education in ('High School Degree', 'Partial High School')) and (time_by_day.the_year = 1997) group by customer.gender, product_class.product_family, product_class.product_department, customer.education, time_by_day.the_year order by customer.gender ASC NULLS LAST, product_class.product_family ASC NULLS LAST, product_class.product_department ASC NULLS LAST, customer.education ASC NULLS LAST, time_by_day.the_year ASC NULLS LAST; |