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.
DECLARE @Test Table (MyField varchar(10))
INSERT INTO @test VALUES('RC1')
INSERT INTO @test VALUES('RC1001')
INSERT INTO @test VALUES('RC999')
SELECT MAX(CONVERT(int, SUBSTRING(MyField,3,500))) AS test
FROM @test