WINDOW FUNCTION LEAD

description

The LEAD() method is used to calculate the value of the current line several lines backwards.

  1. LEAD(expr, offset, default]) OVER (partition_by_clause order_by_clause)

example

Calculate the trend of the closing price of the second day compared with the closing price of the day, that is, the closing price of the second day is higher or lower than that of the day.

  1. select stock_symbol, closing_date, closing_price,
  2. case
  3. (lead(closing_price,1, 0)
  4. over (partition by stock_symbol order by closing_date)-closing_price) > 0
  5. when true then "higher"
  6. when false then "flat or lower"
  7. end as "trending"
  8. from stock_ticker
  9. order by closing_date;
  10. | stock_symbol | closing_date | closing_price | trending |
  11. |--------------|---------------------|---------------|---------------|
  12. | JDR | 2014-09-13 00:00:00 | 12.86 | higher |
  13. | JDR | 2014-09-14 00:00:00 | 12.89 | higher |
  14. | JDR | 2014-09-15 00:00:00 | 12.94 | flat or lower |
  15. | JDR | 2014-09-16 00:00:00 | 12.55 | higher |
  16. | JDR | 2014-09-17 00:00:00 | 14.03 | higher |
  17. | JDR | 2014-09-18 00:00:00 | 14.75 | flat or lower |
  18. | JDR | 2014-09-19 00:00:00 | 13.98 | flat or lower |

keywords

  1. WINDOW,FUNCTION,LEAD