Azure Data Factory – Remove duplicate rows and only remain one unique row
within Azure Data Factory I have a table with 2 columns. I want to remove all duplicate rows and only remain one distinct row. Currently: columnA, columnB a1,b1 a1,b1 a2,b2 a3,b3 a3,b3 a3,b4 After the transformation: columnA, columnB a1,b1 a2,b2…