私はMS Access 2010を使ってクエリを作成することができましたが、SQLite3ではこれを行うのに問題があります。ここではAccess SQL
SELECT pubacc_lo.*
FROM pubacc_en
LEFT JOIN pubacc_lo ON pubacc_en.call_sign = pubacc_lo.call_sign;
Basically it selects all of the columns in the pubacc_lo table and the rows where the call_sign fields are equal between the tables. This does not select any of the pubacc_en data into the final query in MS Access.
私が得た最も近いものは、SQLite 3で遊んでいた
SELECT * FROM PUBACC_LO, PUBACC_EN WHERE PUBACC_en.call_sign=PUBACC_LO.call_sign
しかし、このステートメントは、LOテーブル(クロス結合?)とともにENテーブルのすべてのデータを選択します。私はいくつかの左外部結合を試したが、運がなかった。任意のヒントをいただければ幸いです!