skip to Main Content

Azure data factory – function if does not take 4 arguments

I am trying to split the item name if the item name contains '_' and if those item name starts with a specific schema names item = ['test_tabl','Schema1__mytable1', 'Schema2__mytable2'] @concat('SELECT *FROM ', if(contains(item(), '_'), and(startswith(item(), 'Schema1_'),item()), or(startswith(item(), 'Schema2_'),item()), concat(split(item(), '_')[0],…

VIEW QUESTION
Back To Top
Search