Skip to content
Advertisement

SQL – Compare rows based on date and transpose difference

Scenario:

Table ‘HIST’

RID VALUE HIST_DATE
1 V111 2019-01-01
1 V112 2020-02-11
1 V112 2020-03-08
1 V113 2020-04-11
1 V114 2021-03-15
2 V211 2020-04-11
2 V211 2021-03-16
3 V311 2019-05-01
3 V312 2020-01-01

EXPECTED OUTPUT:

RID VALUE_OLD VALUE_NEW
1 V113 V114

I want to display difference between rows in column ‘VALUE’ grouping by RID where the HIST_DATE is between ‘2020-03-31’ and ‘2021-04-01’

Then transpose the different values in Column ‘VALUE_OLD’ AND ‘VALUE_NEW’.

Note : Assuming only 2 different values can occur between those dates

Oracle SQL

Advertisement

Answer

Another option is to use LAG/LEAD analytics functions :

  • LAG returns value from a previous row in the table.
  • LEAD returns value from the next row in the table.

Then you can filter and format following your needs

take care about the filter inside and outside the main SELECT

  • outside, you are filtering after doing the LAG/LEAD operation (above)
  • inside, you are filtering before doing the LAG/LEAD operation (below)
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement