select warehouse.warehouse_country as c0, warehouse.warehouse_state_province as c1 from warehouse as warehouse, inventory_fact_1997 as inventory_fact_1997 where inventory_fact_1997.warehouse_id = warehouse.warehouse_id group by warehouse.warehouse_country, warehouse.warehouse_state_province order by warehouse.warehouse_country ASC NULLS LAST, warehouse.warehouse_state_province ASC NULLS LAST; |