mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-13 12:28:30 +00:00
ad79ef48a2
* add tests * add bench
18 lines
322 B
Plaintext
18 lines
322 B
Plaintext
|
|
BEGIN TRANSACTION;
|
|
CREATE TABLE t1(a, b, c);
|
|
INSERT INTO "t1" VALUES(1,'one','I');
|
|
CREATE TABLE t2(d, e, f);
|
|
INSERT INTO "t2" VALUES(5,'ten','XX');
|
|
INSERT INTO "t2" VALUES(6,NULL,NULL);
|
|
|
|
CREATE INDEX i1 ON t1(b, a);
|
|
COMMIT;
|
|
|
|
|
|
SELECT * FROM t2
|
|
UNION ALL
|
|
SELECT * FROM t1 WHERE a<5
|
|
ORDER BY 2, 1
|
|
|