Azure Data Factory Pipeline is getting the SQL query stored in a database table. Eg. Query:
Select * from employees where first_name = 'Sam' and last_name = 'mathew'
I need to update the query in such a way that fname and lname will be a parameter in the azure data factory pipeline say
pipeline().parameters.fname and pipeline().parameters.lname
How will the query be modified to use these pipeline parameters in SQL query?
Note: SQL Query is stored in database table. The pipeline will fetch the SQL Query in Copy Data Pipeline Step





