Consider the following query:
select start_date
, end_date
, lead (start_date) over (order by start_date)
, lag (end_date) over (order by start_date)
from my_table
The query uses the Oracle analytic functions LEAD and LAG. When viewed in an SQL window, the keywords lead, lag and over are correctly highlighted. When used in a program window, however, the keywords are not recognized and not highlighted. I tested a few other analytic functions like RANK, MEDIAN and LISTAGG and neither of those are highlighted in a program window. LISTAGG isn't highlighted in an SQL window either.
My request is that the analytic keywords are highlighted in both windows.
Best regards
Michael Doel
Truston Solutions B.V.
select start_date
, end_date
, lead (start_date) over (order by start_date)
, lag (end_date) over (order by start_date)
from my_table
The query uses the Oracle analytic functions LEAD and LAG. When viewed in an SQL window, the keywords lead, lag and over are correctly highlighted. When used in a program window, however, the keywords are not recognized and not highlighted. I tested a few other analytic functions like RANK, MEDIAN and LISTAGG and neither of those are highlighted in a program window. LISTAGG isn't highlighted in an SQL window either.
My request is that the analytic keywords are highlighted in both windows.
Best regards
Michael Doel
Truston Solutions B.V.