Viewing post 1 (of 2 total)
Check this,
declare @str varchar(100)
set @str='mail1@hotmail.com; mail2@hotmail.com'
select LEN(@str) - LEN(REPLACE(@str, '@', ''))
September 9, 2009 at 7:28 am
#1051086