Home > Net >  Data Factory check if an item exists in an array
Data Factory check if an item exists in an array

Time:09-02

I am trying to create a DataFlow under Azure Data Factory and I need to check if my array contains values from another column. These are the information: enter image description here

CodePudding user response:

Use the find() function to check for the existence of a value in your arrays. https://docs.microsoft.com/en-us/azure/data-factory/data-flow-expressions-usage#find

  • Related