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 @i INT
SELECT @i = 1
WHILE @i <= 2000
BEGIN
INSERT INTO Table1 (MemberID) SELECT @i
INSERT INTO Table2 (MemberID) SELECT @i
etc...
SELECT @i = @i + 1
END