Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Combinazione di record duplicati in SQL Server

Due passaggi:1. aggiorna i record con le posizioni corrette, 2. elimina i record con le posizioni sbagliate.

update mytable
set onhand = onhand + 
(
  select coalesce(sum(wrong.onhand), 0)
  from mytable wrong
  where wrong.location like ' %'
  and trim(wrong.location) = mytable.location
)
where location not like ' %';

delete from mytable where location like ' %';