Skip to Content
0
Former Member
Apr 21, 2009 at 02:16 PM

Select with having for a internal table

43 Views

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??