Hi @Sambathkumar, Vinodhkumar (Cognizant),
I have tried below approach and it worked for me:
Initially, I have below sql table ouput for the below query :
SELECT sch_id, stdnt_name FROM rithadmin WHERE aad_num = 009;
Then created a parameter:
stuaadnum with value 009
Now to get/reproduce your error used same design:
Error:
To solve this issue:
Initially clicked on Dynamic values:
Then pressed on stuaadnum as below:
Now it becomes like this:
SELECT sch_id, stdnt_name FROM rithadmin WHERE aad_num =@{parameters('stuaadnum')}
Output:
Body :
This is how parameters are used in SQL query Action.
If this answer was helpful, please click "Accept the answer" and mark Yes
, as this can help other community members.
If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.