PL/SQL - 如何从连接表返回单行
这可能很简单,我只是目前只见树木不见森林。在 Oracle 中,我根据表 A 的主键从表 A 中选择连接到表 B 的记录。但是表 B 可以有多个与表 A 的主键匹配的记录。这导致我的查询从表中返回重复的行答:下面是我的查询的简化版本:
TableA TableB
_______ _________
1, Sec1 2, 11/01/2011
2, Sec2 2
3, Sec3 5, 10/01/2011
4, Sec4 6, 10/01/2011
Select A.SecID, A.SecName, B.DateSent from tableA A
inner join tableB B on A.SecID = B.SecID
这会返回 Sec2 的 2 条记录 - 我怎样才能让它只返回 Sec2 的 1 条记录?我尝试过使用 unique 和 unique 但仍然得到相同的结果。
this might be quite simple I'm just not seeing the wood for the trees at the moment. In Oracle I'm selecting records from table A that joins to table B based on the primary key of table A. However table B can have multiple records matching the primary key of table A. This is causing my query to return duplicate rows from table A. Below is a cut down version of my query:
TableA TableB
_______ _________
1, Sec1 2, 11/01/2011
2, Sec2 2
3, Sec3 5, 10/01/2011
4, Sec4 6, 10/01/2011
Select A.SecID, A.SecName, B.DateSent from tableA A
inner join tableB B on A.SecID = B.SecID
This is returning 2 records for Sec2 - how can I get it to return only 1 record for Sec2? I've tried using distinct and unique but still get the same results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您还需要
tableB
中的记录:ORDER BY
子句控制您将获得b
上的多条记录中的哪一条。If you need a record from
tableB
as well:ORDER BY
clause controls which of the multiple records onb
will you get.您可以使用 GROUP 函数仅选择一行:
You can use a GROUP function to select only one row:
建议的解决方案非常好。在某些情况下,您可能会采取稍微不同的方法,特别是当其中一个表与另一个表相比非常大并且表 B 中的外键列上没有索引时。
The solutions suggested are very good. There are cases when you may have take a bit different approach specially when one of the tables is very large compared to another one and absence of an index on foreign key column in table B.