我有两个表table1和table2。两个表都有多列。
table1: serialno , recordno....
table2: recodno,issueid....
我想要从table1
中检索所有行,
来自issueid
的{{1}},条件为table2
table1.recordno=table2.recordno
的 recordno
是主键。我正在使用MS-Access数据库。
答案 0 :(得分:1)
您可以使用以下任何一种加入方式:
JOIN:当两个表中至少有一个匹配时返回行,
LEFT JOIN:返回左表中的所有行,即使右表中没有匹配项,
RIGHT JOIN:返回右表中的所有行,即使左表中没有匹配项,
FULL JOIN:当其中一个表中存在匹配时返回行
在你的情况下:
SELECT table1.serialno,table1.recordno, table2.issueid
FROM table1
INNER JOIN table2
ON table1.recordno=table2.recordno
ORDER BY table1.serialno
答案 1 :(得分:0)
SELECT table1.serialno,table1.recordno,table2.issueid
FROM table1 LEFT OUTER JOIN table2
ON table1.recordno=table2.recordno