Viewing post 1 (of 1 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