I have a string:
"16680,16678,16677,16676,16675,16672"
Which I got from the Stored procedure passed parameter while calling it. I want to insert these records in where in like
Where in (16680,16678,16677,16676,16675,16672).
How can I make this in Sybase ASE stored procedure?
You can use the
str_replace()
function to replace the double quotes with NULL, eg:Feeding the new string into a query requires a bit more work though.
Trying to feed directly into a query generates an error, eg:
To get around this issue we can dynamically build the query and then run it via an
execute()
call, eg:Another solution that does away with the
@query
variable:NOTE: all code was run in an
ASE 16.0 SP04 GA
instance.