↧
Search in a string field
I would use a Numbers table for this:declare @t table (parentkey int, expression varchar(100)) insert @t select 1,'if col1=''234'' and col2=''abc'' or col1=''456'' and col2=''bb'' else if col1=''78'''...
View ArticleSearch in a string field
I have a string column which has some data like "if col1='234' and col2='abc' or col1='456' and col2='bb' else if col1='78' etc., etc., etc.' in a table with the PK value 1I need to search on this...
View Article