I know this is a somewhat basic request, and it seems doable using the dynamic input tool. I have been trying to get it to work and just can't seem to get it right even after reading numerous similar threads in the community.
I have a long SQL query that has the same date value in many lines of the WHERE clause. I need to constantly edit this value and currently have to find/replace every time I want to do that.
I can't provide the exact SQL for data security reasons but below should be sufficient for creating an example workflow
SELECT *
FROM HR_FILE
WHERE BIRTHDATE = '2020-10-01' -- this is the date I need to manually change quite often
What I need to do is be able to change the BIRTDATE value without having to open the query each time, but NOT as an app.
Thanks for any help!
Craig