You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
291 B
9 lines
291 B
CREATE TABLE my_table (c1 INT, c2 INT, c3 STRING)
|
|
INSERT INTO my_table VALUES(10, 20, "example"), (20, 30, "example2")
|
|
<sql>
|
|
INSERT INTO my_table VALUES(14, 24, 'example3');
|
|
CREATE INDEX idx1 ON my_table(c1);
|
|
SELECT * FROM my_table WHERE c1 < 15;
|
|
|
|
</sql>
|
|
SELECT * FROM my_table WHERE c1 > 15 |