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 VIEW myview
AS
SELECT c1 AS Column1, c2 AS Column2
FROM mytable
GO
--returns Column1, Column2
SELECT * FROM myview
--returns column1, column2
SELECT column1, column2 FROM myview
--returns coLuMN1, COLUMN2
SELECT coLuMN1, COLUMN2 FROM myview
CREATE OR REPLACE VIEW mv_time_on_test_junk (
Sample,
sampled_date )...