mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
7 lines
223 B
Plaintext
7 lines
223 B
Plaintext
|
|
CREATE TABLE t1 (a INTEGER PRIMARY KEY);
|
|
CREATE TABLE t2 (a INTEGER PRIMARY KEY, b INTEGER);
|
|
CREATE TABLE t2x (b INTEGER PRIMARY KEY);
|
|
SELECT t1.a FROM ((t1 JOIN t2 ON t1.a=t2.a) AS x JOIN t2x ON x.b=t2x.b) as y;
|
|
|