There are common ways to handle dup data as described Here
But I'm looking for more options. Thanks
I have tried the options from here https://learn.microsoft.com/en-us/azure/data-explorer/dealing-with-duplicates and was looking into unique hashed row approach or a policy which triggers the function and periodic KQL queries to identify and remove the duplicate data.
Another approach to handle duplicate data in ADX is by using
distinct. It removes the duplicate data from the table.Below is the sample table
TableFis created with duplicate data as shown below.Use below query with
distinctto work with duplicate values. It stores the data in another tablenewTableOutput: