Skip to content
Advertisement

Get items that have less available quantity then needed

I have a list of order items and a list of inventory quantity per item

I want to get the first of each item that I will not have enough inventory

This is the list of order items

This is the list of inventory

I want to see a list with the first order item which I will not have enough inventory like this:

Even better would be better to see how much is partially available

Advertisement

Answer

This will return the first order item that does not meet the needed inventory:

And a working SQLFiddle using your example: http://sqlfiddle.com/#!18/f4973e/12

Defining “first” as the smaller OrderId means there is an error in your expected results. OrderID 156993 is before 156999, so the 4th result should actually be

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement