Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Oracle:Aktualizacja kolumny tabeli przy użyciu ROWNUM w połączeniu z klauzulą ​​ORDER BY

To powinno działać (u mnie działa)

update table_a outer 
set sequence_column = (
    select rnum from (

           -- evaluate row_number() for all rows ordered by your columns
           -- BEFORE updating those values into table_a
           select id, row_number() over (order by column1, column2) rnum  
           from table_a) inner 

    -- join on the primary key to be sure you'll only get one value
    -- for rnum
    where inner.id = outer.id);

LUB używasz MERGE oświadczenie. Coś takiego.

merge into table_a u
using (
  select id, row_number() over (order by column1, column2) rnum 
  from table_a
) s
on (u.id = s.id)
when matched then update set u.sequence_column = s.rnum


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zastępowanie tekstu w kolumnie BLOB

  2. Kryteria hibernacji dla dat

  3. Pierwsze kroki z SQL w Oracle Application Express

  4. Najpopularniejsze przydatne zapytania AWR dotyczące aktualizacji R12.2/R12.1

  5. Ciekawy problem z Oracle UNION i ORDER BY