One table (tblContainers) holds container sizes (fields: ID, Type, maxPayload).
Sample data:
Other table (tblMerchandise) holds merchandise weight (fields: ID, Weight)
Sample data:
I need a query to return the minimum container size required for each record in the tblMerchandise table.
Thank you.
Sample data:
Code:
ID Type maxPayload
1 A1 27,000
2 A2 29,200
3 A3 32,150
4 A4 25,500
5 A5 22,600
6 A6 28,300
Sample data:
Code:
ID Weight
1 28,500
2 31,300
3 23,000
4 24,600
5 29,100
6 26,400
7 30,200
Thank you.