You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
--Duplikate raus: |
|
|
|
select uniquename,resultset_id into temp tmp_doppelt |
|
from rpta_column |
|
group by 1,2 |
|
having count(*)>1; |
|
|
|
delete from rpta_column where (uniquename,resultset_id) |
|
in (select uniquename,resultset_id |
|
from tmp_doppelt); |
|
|
|
drop table tmp_doppelt;
|
|
|