MySQL Query - Sum the Capacity of Multiple Warehou

2019-08-30 05:15发布

We have a MySQL database that has two tables, Warehouse and Crate

Warehouse:
WarehouseID (primary key)
Location (varchar)

Crate:
CrateID (primary key)
Warehouse (foreign key to a Warehouse record)
Max_Capacity (int) (the amount of boxes that can be packed into a crate)

I would like to write a query that returns a sum of all the crates' max_capacity for each Warehouse. I'm having trouble with duplicate entries and inner joins, so what I'm hoping for is something like:

LOCATION:    WAREHOUSE_ID:  TOTAL_CAPACITY:
Shoreline    1              60
Bellevue     2              120
Ballard      3              200

Each warehouse might have 10 or so crates.

3条回答
Explosion°爆炸
2楼-- · 2019-08-30 05:26

You should look up the mysql manual for these words:

  • inner join
  • group by
  • sum()

These can help you assembly the query you want.

查看更多
太酷不给撩
3楼-- · 2019-08-30 05:30

just group by the warehouses:

(assuming the foreign key in the crate table is called warehouseID)

SELECT 
  warehouse.location, 
  warehouse.warehouseID, 
  SUM(crate.max_capacity) AS total_capacity
FROM warehouse
INNER JOIN crate
  ON crate.warehouseID = warehouse.warehouseID
GROUP BY
  warehouse.warehouseID
查看更多
【Aperson】
4楼-- · 2019-08-30 05:37
select w.location, w.warehouse_id, sum(c.capacity) as total_capacity 
from warehouse w, crate c 
where w.warehouse_id = c.warehouse_id 
group by c.warehouse_id
查看更多
登录 后发表回答