blob: 554d53223cd2dea7618254764887c4bcf5b5649e [file] [log] [blame]
select customer.country as c0, customer.state_province as c1 from customer as customer where (customer.country in ('Canada', 'Mexico', 'USA')) group by customer.country, customer.state_province order by customer.country ASC NULLS LAST, customer.state_province ASC NULLS LAST;