Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,833 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello
I need to merge multiple rows into one row in azure data factory, per example I have the following file
PolicyId Driver_name
0001 Adam
0001 Lucy
0002 peter
At the end I need to have
PolicyId Driver_name1 Driver name2
0001 Adam Lucy
0002 peter
I don't see any option on the data flow activity to do it, please can you help me??
Use the collect() function inside of an Aggregate transformation to combine row values together into an array.