select warehouse.warehouse_name as c0 from warehouse as warehouse where (warehouse.warehouse_city = 'Vancouver' and warehouse.warehouse_state_province = 'BC') and UPPER(warehouse.warehouse_name) = UPPER('Bellmont Distributing') group by warehouse.warehouse_name order by warehouse.warehouse_name ASC NULLS LAST; |