I want to limit my SELECT results in mySQL by sum.
For Example, this is my table:
(id, val)
Data Entries: (1,100), (2,300), (3,50), (4,3000)
I want to select first k entries such that the sum of val in those entries is just enough to make it to M. For example, I want to find entries such that M = 425. The result should be (1,100),(2,300),(3,50).
How can I do that in a mysql select query?