This should work:SELECT * FROM EmailLogTable WHERE ','+ToAddr+',' LIKE '%,'+@EmailAddr+',%'
But if you have spaces between e-mails, then you may want to remove the spaces as inSELECT * FROM EmailLogTable WHERE ','+replace(ToAddr,' ','')+',' LIKE '%,'+@EmailAddr+',%'
But then if e-mail addresses themselves have spaces, that would not work. I don't know much about the e-mail address format specifications, but I haven't seen an e-mail address with a space in it, so I think you will be ok.