SQL: Vorsicht bei LAG / LEAD

Mit den Analytischen Funktionen von Oracle lassen sich elegant tolle Dinge lösen. Ein Bsp. ist LAG

siehe auch Doku: http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions070.htm#SQLRF00652

Doch Vorsicht:
LAG(spalte, 1) liefert den Nachfolger im ROWSET! Das ist aber nicht immer der gesuchte Wert! Bei Lücken im Rowset (für ein Quartal gab es keine Werte) verschieben sich die mit LAG gelieferten Ergebnisse.

Bsp:

drop table fs_tst;
create table fs_tst
(
quartal number,
hnr number,
wert number
);

insert into fs_tst values (20091, 10, 1);
insert into fs_tst values (20092, 10, 2);
-- Quartal 20093 fehlt
insert into fs_tst values (20094, 10, 3);
insert into fs_tst values (20091, 20, 4);
insert into fs_tst values (20092, 20, 5);
-- Quartal 20093 fehlt
insert into fs_tst values (20094, 20, 6);
insert into fs_tst values (20101, 10, 7);
insert into fs_tst values (20102, 10, 8);
insert into fs_tst values (20111, 10, 9);
commit;


select * from fs_tst;


select quartal,
hnr,
wert,
lag (wert, 1) over ( PARTITION BY hnr ORDER BY quartal ASC) lag1
from fs_tst;

Ergebnis:
QUARTAL HNR WERT LAG1
---------- ---------- ---------- ----------
20091 10 1
20092 10 2 1
20094 10 3 2
20101 10 7 3
20102 10 8 7
20111 10 9 8
20091 20 4
20092 20 5 4
20094 20 6 5

9 rows selected.

Bei Quartalsübersichten führt dies zu Fehlern!

Kommentare

  1. The most important thing to know when you are selling an account is
    where you are going to sell. A look into some of the best Star Wars
    apps to be found on i - Tunes, including games, fun soundboards, books, and more.
    However, make sure that your phone is equipped with
    a powerful processor to enable deeper searches and devise a strategy to give a challenging game
    of chess.

    Also visit my web page internet radio

    AntwortenLöschen
  2. Wow, this article is fastidious, my younger sister is analyzing these things, thus I am going to convey her.



    Here is my webpage video downloader

    AntwortenLöschen
  3. Qualіty ρostѕ іs the imρortant to attract
    the usеrs to ρay а visit the web pagе,
    that's what this web page is providing.

    Feel free to surf to my weblog ... Chillout Radio

    AntwortenLöschen
  4. Yet another first person shooter game this time around, but the
    first Far Cry was quite good. If you look around your community, our
    country, and the world, there is little evidence of loving actions.
    I thought it would be cool to make people laugh as I inquire
    into the things that fascinate me, like the trap of being human and, at the same time, divine.
    It scored a decent 3208 marks in the PCMark04 benchmark.
    Of course, the layout of the apps is completely customisable,
    so you can place your most commonly used apps and widgets within easy
    reach, so they can be instantly accessed
    after unlocking the screen. Originally established as a sanctuary
    for the Nilgiri Tahr, the 'The Eravikulam National Park' has now turned
    into a highly popular tourist spot. games for preschoolers.
    We're now looking at life lately in entirely new ways. a far cry: a long way from. A Whole Lot of Exciting Options to Choose from Advanced car wash equipment use low-flow technology that drastically reduces drying times for carpets and upholstery.

    Here is my webpage http://chatsex.xxx/index.php?do=/profile-26236/info

    AntwortenLöschen
  5. What's Going down i'm new to this, I stumbled upon this I've found It positively helpful and it has helped me out loads. I hope to give a contribution & assist other customers like its aided me. Good job.

    Visit my weblog - youtube converter

    AntwortenLöschen
  6. Tomb Raider, Mega Moolah, Mermaid's Millions, and Blackjack are some of the new Android game apps that have been released from Microgaming's partner,
    Spin 3. Each program will have a box with a checkmark, find the programs you'd like to uninstall and uncheck that box. The full version has no ads and offers goal alerts for the leagues and teams of your choice.

    Feel free to surf to my web site :: radiosender
    Also see my website > kostenlos spielen ohne anmeldung

    AntwortenLöschen

Kommentar veröffentlichen

Beliebte Posts aus diesem Blog

PGA unter Oracle 11g

trunc(sysdate) - nette Spiele mit dem Datum

Datapump - Verzeichnis erstellen