小编Kev*_*vin的帖子

SQLite JOIN ... USING - rowid 有效,但随后不起作用

这有效。

SELECT *
FROM Demographics
JOIN MeasuresofBirthAndDeath
ON Demographics.rowid = MeasuresofBirthAndDeath.rowid;
Run Code Online (Sandbox Code Playgroud)

这不。

SELECT *
FROM Demographics 
JOIN MeasuresofBirthandDeath
USING (rowid);
Run Code Online (Sandbox Code Playgroud)

为什么?

join

5
推荐指数
1
解决办法
2991
查看次数

标签 统计

join ×1