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 T1
(C1 int,
C2 int,
C3 varchar(10))
CREATE INDEX T1_I1 ON T1 (C1)
GO
CREATE INDEX T1_I2 ON T1 (C2, C3)
GO
CREATE IDNEX T1_I3 ON T1 (C1, C3)
GO