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 TABLE #r (
Rank int IDENTITY,
Rollno int,
[Name] varchar(20)
)
INSERT #r
SELECT rollno, [name]
FROM tablename
ORDER BY [name]
SELECT * FROM #r
ORDER BY rank
DROP TABLE #r