Skip to content
Advertisement

Subtract a number from the rows until the number ends to zero

How can subtract a number from the rows to the end of the subtraction in MySQL with query update

If have table like this

and i want subtract “80” form qoh to get the output

I tried by and not work

What is the appropriate adjustment to do?

Advertisement

Answer

If you are running MySQL 8.0, you can do the computation with window functions.

The following select query gives you the expected results:

You can then turn this to an update:

Demo on DB Fiddle:

itemId | storeCode | qoh
-----: | --------: | --:
     1 |         1 |   0
     1 |         2 |   0
     1 |         3 |  10
     1 |         4 |  50

I added an extra line at the end of your data to demonstrate that the queries leave the “following” qon untouched.

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