Hello
Is there a way from the console, perhaps using rest queries, to find rows that have duplicate values in a certaon colum.
For exmaple I want to find rows that have duplicate customer name .
Thanks
Hello
Is there a way from the console, perhaps using rest queries, to find rows that have duplicate values in a certaon colum.
For exmaple I want to find rows that have duplicate customer name .
Thanks
Hello,
This can be done by using grouping with the having
clause. For example, here’s my data table:
I want to find all the records with duplicate values in the firstName
column. This is the configuration for the query in REST Console:
There are three parts to it:
count
function - count(objectId)
in my casehaving
clause that references the count value from the first partREST Console will display the full REST URL in the Where
section (not showing the picture).
Regards,
Mark
Awesome . Thank you Mark