在这个例子中,我们在 SQLite 数据库上有 3 个相关的表:
CREATE TABLE test1 (
c1 integer,
primary key (c1)
);
CREATE TABLE test2 (
c1 integer,
c2 integer,
primary key (c1, c2)
);
CREATE TABLE test3 (
c2 integer,
c3 integer,
primary key (c2)
);
现在我需要加入所有表:
test1 -> test2(带有 c1 列) test2 -> test3(带有 c2 列)。
我已经尝试过这个解决方案,但它没有运行:
SELECT
*
FROM test1 a
LEFT OUTER JOIN test2 b
LEFT OUTER JOIN test3 c
ON c.c2 = b.c2
ON b.c1=a.c1
它给了我一个错误:
near "ON": syntax error.
有什么帮助吗?