Is there a way to run a sql select query based on criteria that might be in a pipe delimited string in a table field? For example if a record has its column value as AB||CD||EF||GH, how would i run the query and select all records where this column has either the value "CD" or "GH"?
I can easily do this in vb.net/asp.net using a split function but due to the extremely large number of records (100s of thousands), I would rather have this processing run on the server in a stored procedure as opposed to running it on the client.
Thanks.
I can easily do this in vb.net/asp.net using a split function but due to the extremely large number of records (100s of thousands), I would rather have this processing run on the server in a stored procedure as opposed to running it on the client.
Thanks.