What is the correct way to take user input in Power Automate Desktop and pass that input as a parameter/variable in an SQL query.
For example, if user enters a value of 3, how do I run a SQL query that looks like -
select * from table where value > 3
Power Automate Desktop stores the user input in a variable and I've tried numerous variations of:
select * from table where value > %UserInput%
select * from table where value > "%UserInput%"
select * from table where value > %[UserInput]%
And I've tried many more variations but I am not getting any results.
Any feedback would be greatly appreciated!
I've got the solution:
I put prenthesis for varchar values to be added to SQL base and replace function for adjusting for decimal values