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.
select @fld = SUBSTRING(@fld, CHARINDEX('[', @fld)+1, CHARINDEX(']', @fld) - CHARINDEX('[', @fld)-1)
SELECT [red][b]case when @test like '%[[]%]%' THEN [/b][/red]
SUBSTRING(@test, CHARINDEX('[', @test)+1, CHARINDEX('[', REVERSE(@test))-2)
[red][b]ELSE '' END[/b][/red]