Comma Delimited SQL string Need to separated

前端 未结 11 1984
[愿得一人]
[愿得一人] 2020-12-20 23:39

I have this string that i am getting from .net application A,B,C,D,E,F,

I wanted to write a sql select statement like

set @string = \'A,B,C,D,E,F\'

         


        
11条回答
  •  情深已故
    2020-12-21 00:16

    You could keep it really simple with built-in sql functions:

    set @string = 'A,B,C,D,E,F'
    
    select * from tbl_test 
    where CHARINDEX(ISNULL(tbl_test.code, 'X'), @string) > 0
    

    PATINDEX can be used in case you need more than one character.

提交回复
热议问题