Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Client source database is store in Flame robin.
If i want to check the duplication records how to check it.
I think we can use row_number() over (partition by order by) in Flame robin database.

What I have tried:

I have try rank() also but it is not working in it.
Posted
Updated 2-Oct-20 13:35pm

1 solution

Was curious what Flamerobin is, got the following url: How to find duplicate records?[^]

Quote:
You might want to add an UNIQUE index on some table fields (for example field ID) but need to find and remove duplicates first. Here's a query to find them:

SQL
select id, count(*)
from t1
group by id
having count(*) > 1;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900