how can i write the store procedure for searching particular string in a column of table, for given set of strings (CSV string).
like : select * from xxx where tags like (‘oscar’,’rahman’,’slumdog’)
how can i write the procedure for that combination of tags.
To create a comma seperated string…
You could then apply this list to Oded example to create the
LIKEparts of theWHEREcluase on the fly.