如何从 adf 中的全局参数传递 table 名称

How to pass table name from global parameter in adf

我需要在 adf 中传递 select 查询以查找日期 我的查询工作正常

SELECT [LastSuccessWatermarkDate] FROM [dbo].[arddl_WaterMarkCntrl]
WHERE SourceTable = '@{item().entity_name}'

但我想将全局参数作为表名而不是 [dbo].[arddl_WaterMarkCntrl]

传递

如何进行?

您可以利用以下逻辑:

SELECT [LastSuccessWatermarkDate] FROM @{pipeline().globalParameters.TableName}
WHERE SourceTable = '@{item().entity_name}'