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

Oracle:skopiuj wiersz podczas aktualizacji jednego pola dla tabeli z wieloma kolumnami

Prostym sposobem na to jest anonimowy blok PL/SQL i użycie ROWTYPE :

-- setup test table
create table my_table(pk, value) as
  select 17 pk, 'abc' value from dual;

declare
  l_data my_table%rowtype;
begin
  -- fetch the row we want to copy
  select * into l_data from my_table tbl where tbl.pk = 17; 
  -- update all fields that need to change
  l_data.pk := 18;
  -- note the lack of parens around l_data in the next line
  insert into my_table values l_data; 
end;



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Pojedyncze połączenie z Oracle

  2. Wyjaśnienie operatora Oracle UNION

  3. pobierz listę liczb pomiędzy dwiema kolumnami

  4. Jak usunąć zduplikowane wiersze w SQL?

  5. Jak policzyć liczbę kolumn w tabeli za pomocą SQL?