Hi,
I've got an application which returns data in the format [Value1] [Value2] [Value3] - It adds the square brackets to the result. So it's essential just a string
I need to find rows in another table which contain any of the individual values returned.
I've tried nested replace commands to change the string to 'Value1,Value2,Value3' and then trued using is in a select statement something like
Select Field1, Field 2 From Table Where Field1 IN
I get no data returned.
Is it possible to modify the string in SQL to allow me to perform an IN or LIKE to return the data ?
Thanks