Hai bước:1. cập nhật các bản ghi có vị trí chính xác, 2. xoá các bản ghi có vị trí sai.
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 ' %';