I have a column in database that has these values :
##1##,##7##,
##1##,##3##,##5##,
i need to check if ##3##, is exists or not .
i try to use like clause
declare @MyCSharpParameter
set @MyCSharpParameter = '##3##,##4##'
select * from myTable where col like '%@MyCSharpParameter%'
but,it's not work fine because myTable dose't have '##3##,##4##' it's have ##3##,##5##,
any help please to check it as separate numbers and find 3.