bug fix on sqlblock and documentations

This commit is contained in:
2022-11-17 06:48:12 +08:00
parent 8fbcc5bb1c
commit 4f7f544983
4 changed files with 47 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
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