Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE FUNCTION InitCap(@TheString varchar(8000))
RETURNS varchar(8000)
AS
BEGIN
DECLARE @pos int
SET @TheString = Lower(@TheString)
SET @pos = 1
WHILE @pos IS NOT NULL BEGIN
SET @TheString = Stuff(@TheString,@pos,1,Upper(SubString(@TheString,@pos,1)))
SET @pos = @pos + NullIf(PatIndex('%[^a-z0-9][a-z]%',SubString(@TheString,@pos+1,8000)),0) + 1
END
RETURN @TheString
END