Oracle
 sql >> Base de données >  >> RDS >> Oracle

Oracle :copier une ligne lors de la mise à jour d'un champ pour une table avec plusieurs colonnes

Un moyen simple de le faire est un bloc PL/SQL anonyme et l'utilisation de 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;