I have a stored procedure which is implemented in Dynamic SQL. I am trying to include an IN keyword and pass fixed values in the list between single quotes.
I want to write something like this:
where grp.Status in ('A,S')
but the above statement is already encapsulated in single quotes.
I tried using something like the one below:
where grp.Status in (' +QUOTENAME('A,S','''')+
but the query is only recognizing the first value in the list i.e. 'A'.
I also read about using a split function and putting the values in a temp table and using the temp table's column instead. But, I don't was to do that process for a tiny list.
Any suggestions and solutions are greatly appreciated.
You can just put the list into the SQL:
If I got those single quotes right, this should produce the result as: