vote up 0 vote down star

I have the following data in the table SALES:

BillItemID    CustID    BillDate    Item    BillAmt
1001          1         09-10-01    Suit    $50.00
1002          1         09-10-01    Shirt   $20.00
1003          1         09-10-01    Pants   $20.00
1004          1         09-10-01    Tie      $5.00
1005          1         09-01-10    Tie      $5.00

Customer #1 now presents a payment of $75.00. I want to locate any set of rows (I don't care which set) such that SUM(BillAmt) of the selected rows totals $75.00. Can anyone suggest an SQL query that will do this?

I'm using an obscure niche database called R:Base (okay, who here is old?) which supports much of SQL-92 syntax and offers stored procedures. I should be able to shoe-horn any SQL-92 answer that doesn't use vendor-specific extensions into my application.

flag

This is going to be a bit nasty since you need to first calculate the combinations and then check them for the right figure. At least the ordering doesn't matter so it is not the number of permutations, but it is still pretty bad. – Andrew Oct 23 at 16:06
You're going to want to add more examples. In your example, all possible solutions will end up selecting 1001 plus either 1002 or 1003 and 1004 or 1005. You should add a test case where it's not possible to include the most expensive row, as well as more interesting combinations of answers. Do you want to optimize for paying off the most rows, or the most expensive rows? – W. Craig Trader Oct 23 at 16:39
You should also define the case where no solution exists and what you will do with the money. Examples: $4.00, $35.00 – Austin Salonen Oct 23 at 16:49
Thanks. @W - I have no optimization considerations at all, as long as I come up with a set if rows that meets the condition, I'm happy. There are plenty of edge scenarios, but I'll only write the tests if I think I'll have something to test! @Austin — obviously I have to deal with the situation in which they don't "exact pay", right now I'm just concerned about determining whether they did or not. – Larry Lustig Oct 23 at 16:58

3 Answers

vote up 4 vote down check

That's a variation of the knapsack problem, and you aren't going to solve it in SQL without a lot of procedural code. For starters, you're going to need recursion, and most SQL stored procedures don't cope at all well with recursion.

link|flag
It seems to me to be a somewhat simplified version of that problem but yes, it's in the same domain. To make matters worse the programming language that goes with this database doesn't allow recursion at the application level, either. – Larry Lustig Oct 23 at 16:34
Thanks. I will (most likely) require the user to allocate the partial payment themselves or (less likely) write a small DLL in Delphi to solve the problem recursively. – Larry Lustig Oct 23 at 17:07
You can beat the recursion restriction by using arrays to fake a stack context, and lots of loops, but it ain't pretty. You could also do the same thing with temporary tables, but driving cursors through temporary tables that are being updated on the fly is non-trivial. – W. Craig Trader Oct 23 at 17:09
Have you considered telling the client that the correct answer is NOT to try to pay off individual items, but instead to just do what every other retail POS system does, and pay off complete orders? That's easy (and doesn't require recursion). If they insist on this 'feature' then I'd write them a separate estimate with very frightening prices. – W. Craig Trader Oct 23 at 17:09
@W that is not a possible or correct solution in this instance. In the actual application (which involves insurance, not clothing), there are two paying entities. When the "first payer", who receives only the total amount due, forwards only a partial payment a second bill must be created for the ultimate consumer. That bill, unlike the first, must be itemized. Given the nature of the application I'm convinced that that's correct and, to change it, numerous state and local government would have to update their accounting systems. – Larry Lustig Oct 23 at 17:15
show 2 more comments
vote up 0 vote down

Because of the complexity (this pretty much is the knapsack problem that W. Craig Trader stated), I would recommend adding a PaidAmt column that you update based on a priority you define.

From your example, where the customer paid $75.00 and assuming the most expensive item is paid off first:

BillItemID    CustID    BillDate    Item    BillAmt  PaidAmt
1001          1         09-10-01    Suit    $50.00   $50.00
1002          1         09-10-01    Shirt   $20.00   $20.00
1003          1         09-10-01    Pants   $20.00   $5.00
1004          1         09-10-01    Tie      $5.00   $0.00
1005          1         09-01-10    Tie      $5.00   $0.00


After a little more digging, this is the Subset Sum problem and is NP-Complete. There is an "approximate" algorithm defined at the link.

link|flag
That's exactly WHY I need to find a set of rows that match the payment amount. I cannot simply start at the most expensive and pay them one by one because I want a set (if such exists) that will not result in a partial payment on any of the rows. – Larry Lustig Oct 23 at 16:32
What will you do when no set exists? How would tackle the customer paying $74.00? – Austin Salonen Oct 23 at 16:45
Then I will probably start at the "top" (as defined by the client), paying as I go and partial paying the last item I reach. According to the client this will "never" happen, but I'll have to code for it anyway. Nonetheless, right now I'm just interested in detecting and processing the case in which the payment can be exactly disbursed among a subset of the charges. – Larry Lustig Oct 23 at 17:01
Actually, I take that back. If the payment can't be exactly allocated I'll display a list of charges to the user and have them manually allocate the payment, checking to ensure they allocate the precise amount. I'll probably do this even if the payment does allocate exactly, but I'll be able to present them with an "already solved" solution in that case. – Larry Lustig Oct 23 at 17:03
I'd recommend paying in date order (oldest first) instead of by price -- presumably fees are charged for items unpaid for longer than 30/60/90 days... – W. Craig Trader Oct 23 at 17:11
show 1 more comment
vote up -2 vote down

try this:

Select * from sales where custid = 1 group by custid having sum(billamt) = 75

link|flag
1  
No, that will give no results (the only candidate row having a SUM(BillAmt) value of $100.00 in the case of the sample data). – Larry Lustig Oct 23 at 16:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.