Hi @ADFARI23 ,
Thanks for posting your query on Microsoft Q&A platform.
In copy activity too, you can use query with filter like below.
-using a plain query using getdate() in the where clause,
select * from dbo.src_location where businesseffectivedate>=GETDATE()
- if your where condition column comes from a pipeline parameter called 'dt', use below
@markus.bohland@hotmail.de ('select * from dbo.src_location where businesseffectivedate>=''',pipeline().parameters.dt,'''')
Same way you can use the filter condition with variables and functions.
Please let us know if you are stuck with syntax for your case.
Thanks.