blob: 34d738782390557a30d6042868a4735daf89d049 [file] [log] [blame]
select customer.gender as c0, customer.marital_status as c1, customer.education as c2 from customer as customer, sales_fact_1997 as sales_fact_1997 where sales_fact_1997.customer_id = customer.customer_id group by customer.gender, customer.marital_status, customer.education order by customer.gender ASC NULLS LAST, customer.marital_status ASC NULLS LAST, customer.education ASC NULLS LAST;