Azienda coinvolta
ID table with duplicate rows: id1,id2 Select only the duplicate rows.
Anonimo
SELECT ID FROM MyTable GROUP BY ID HAVING COUNT(ID) > 1
with cte as (select id, row_number() over (partition by id order by id asc ) as "Rn" from tab1) select id from tab1 where Rn > 1
Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.
Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.