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 t1.f1, t1.f2 INTO #mytmptbl FROM t1 WHERE f1 < 100
CREATE VIEW v1 as SELECT t1.f1, t1.f2 FROM t1 WHERE f1 < 100
SELECT * FROM v1