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.
SET ROWCOUNT 5000
WHILE EXISTS (
SELECT 1
FROM Table1 T1 LEFT JOIN Table2 ON T1.Key = T2.Key
WHERE T2.Key IS NULL
)
INSERT INTO Table2
SELECT T1.*
FROM Table1 T1 LEFT JOIN Table2 ON T1.Key = T2.Key
WHERE T2.Key IS NULL
SET ROWCOUNT 0