My database is Db2 for IBM i.
I have read-only access, so my query must use only basic SQL select commands.
==============================================================
Goal:
I want to select every record in the table until the sum of the amount column exceeds the predetermined limit.
Example:
I want to match every item down the table until the sum of matched values in the "price" column >= $9.00.
The desired result:
Is this possible?
You may use sum
analytic function to calculate running total of price and then filter by its value:
with a as ( select t.*, sum(price) over(order by salesid asc) as price_rsum from t ) select * from a where price_rsum <= 9
SALESID | PRICE | PRICE_RSUM ------: | ----: | ---------: 1001 | 5 | 5 1002 | 3 | 8 1003 | 1 | 9
db<>fiddle here