I am trying to put together some SQL code that is able to distribute a certain quantity among buckets with a limited capacity for this quantity in a specific order but in separate transactions. See below for example.
I have 2 buckets, each with a certain capacity (integer):
bucket capacity
1 100
2 50
I have certain quantities to be bucketed in a number of transactions:
transaction quantity
1 50
2 60
3 20
4 40
I want the following result after running the SQL code, which should keep the transaction number and tell me how much each bucket was able to hold of that quantity. The buckets have to be filled in order of the bucket number, and in order of transaction number:
transaction quantity_bucketed bucket_id overage
1 50 1 0
2 50 1 0
2 10 2 0
3 20 2 0
4 20 2 20
If there are no more buckets, and there is still a quantity to be bucketed, it should go to the "overage" column as in the example above.
Caveat: I didn't try to make an extra column out of the "overage". When filling buckets, it's kinda irrelevant which bucket the overage didn't fit into. In the example case, only 1 transaction had overage. I'm assuming in your real use case that if there were more transactions, you'd really like to see quantities per transaction not bucketed.