Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
col x format a3
col srv like x
col srt like x
col fml like x
col fnc like x
col sfn like x
col skg like x
col wrk like x
select id
, dt
, max(decode(category,’SRV’,val)) SRV
, max(decode(category,’SRT’,val)) SRT
, max(decode(category,’FML’,val)) FML
, max(decode(category,’FNC’,val)) FNC
, max(decode(category,’SFN’,val)) SFN
, max(decode(category,’SKG’,val)) SKG
, max(decode(category,’WRK’,val)) WRK
from notadba
group by id, dt
/
ID DT SRV SRT FML FNC SFN SKG WRK
---------- ---------- --- --- --- --- --- --- ---
1000 01/01/2005 A B C D E F H
1000 12/12/2002 A1 B1 C1 D1 E1 F1 H1
2 rows selected.