I have a column in a table that can have a string CSV, I want to run a query against all those values with a LIKE that is apart of a ON clause to a outer join.
DECLARE @to VARCHAR(max) = (SELECT value FROM dbo.table WHERE id = 'key');
DECLARE @t table ( value varchar(max) )
INSERT INTO @t SELECT item FROM fn_csv_splitstring ( @to , ',' )
After I have gotten all the CSV values, I now want to have each value in my temp table used as an expression on the LIKE keyword similar to the below select
SELECT * FROM
dbo.table e
where e.value LIKE '%' + (SELECT value FROM [@t]) + '%'
The exact statement is used on a left outer join statement, the ON clause links two table row IDs
e.id = t.id and then there is an additional AND expression AND e.value LIKE 'col%' At this point I need to be able to have all rows in my temp table as a bunch of OR LIKE '%' or something that acts as LIKE '%' + (SELECT value FROM [@t]) + '%'
I have tried the IN keyword, but IN seems to only work with exact matches and not the wild card.
Thanks in advance.