Skip to content
Advertisement

How to count if the difference of two consecutive rows is greater than 0?

Suppose the following table,

The final output I am trying to achieve is,

where Change is a counter which increments given the difference between any two consecutive rows (value rows) is not 0. How may I achieve this using mysql?

Advertisement

Answer

LAG() can be used to fetch the preceding row:

LEAD() can give the same result, as shown in another answer. In both cases, either the first row has no previous, or the last row has no next, so they cannot compare to NULL.

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