I tried for hours and read many posts but I still can\'t figure out how to handle this request:
I have a table like this:
+------+------+ |ARIDNR|LIE
Use this
select * from ( SELECT ARIDNR,LIEFNR,row_number() over (partition by ARIDNR order by ARIDNR) as RowNum) a where a.RowNum >1