Hi,
In SQL you have de possibility to count the duplicate rows of a database table by doing it with (for example):
SELECT col1 COUNT(col2)
FROM table
GROUP BY col2
HAVING ( COUNT(col2) > 1 ).
is something also possible to do with a internal table??