Is there MS SQL Server function that counts the number of times a particular character appears in a string?
BEST
DECLARE @yourSpecialMark = '/'; select len(@yourString) - len(replace(@yourString,@yourSpecialMark,''))
It will count, how many times occours the special mark '/'