sql >> Databáze >  >> RDS >> Oracle

Aktualizace sloupce na základě předchozího záznamu

Věřím, že chcete row_number() :

select t.*,
       (row_number() over (partition by c1, c2, c3, c4, c5 order by c6) - 1
       ) as "Count"
from t;

Můžete použít merge vložit to do update tvrzení. Případně, pokud opravdu chcete update :

update t
    set count = (select count(*)
                 from t t2
                 where t2.col1 = t.col1 and t2.col2 = t.col2 and t2.col3 = t.col3 and
                       t2.col4 = t.col4 and t.col5 = t2.col5 and
                       t2.col6 < t.col6
                );


  1. Oracle 11g - Spouštění PL/SQL kurzorů

  2. Volání uživatelem definované funkce umístěné v postgres.c v postgreSQL pomocí GUI definovaného pomocí netbeans

  3. Backtrace z SQL dotazu do kódu aplikace?

  4. Import souboru .sql na windows do postgresql