How to write Filter Expression in Azure Data Flow?

十年热恋 提交于 2021-01-05 10:30:32

问题


I have filter in Data Flow of Azure Data Factory where I need to write expression for the following SQL logic(Where statement):

Where 
ID NOT IN (Select PID from Table1 where ptype_c in (100, 2000))

回答1:


If your source is SQL Database, you can just choose Query option.

If no, you can try like this.

1.create a Filter activity, get the data which ptype_c is in (100, 2000).

2.create a Select activity, change the column name.

3.new a branch of Source.

4.create a Exist activity.



来源:https://stackoverflow.com/questions/64886590/how-to-write-filter-expression-in-azure-data-flow

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!