Hello,
I would like return in a file the duplicates lines from a table.
Is it possible with a composant?
Or must I use a sql request.
But my problem with the request is the null value in the cell of the line. When U do a join and there is a null value in the row, there no resoult from the request.
How can U do to solve this problem?
Thank you
Regards.
Laurent Albiac
You could copy them into a plain file, for example, keep in mind that your statement is like this:
SELECT f1,f2,f3,count(*)
from table
group by f1,f2,f3
having count(*)> 1
I don't see where's the problem
|||or you can try this
SELECT ROW_NUMBER() OVER (ORDER BY field1 ASC, field2 ASC) AS ROWID,
field1,field2 FROM table
rabbiwan wrote: Hello,
I would like return in a file the duplicates lines from a table.
Is it possible with a composant?
Or must I use a sql request.
But my problem with the request is the null value in the cell of the line. When U do a join and there is a null value in the row, there no resoult from the request.
How can U do to solve this problem?
Thank you
Regards.
Laurent Albiac
If you want to find duplicates use the Aggregate component to see how many rows there are of each combination. Anything that is plural - those are your duplicates.
-Jamie
No comments:
Post a Comment