如何将子查询的结果连接到 PostgreSQL 中的表?

发布于 2024-08-18 14:00:10 字数 609 浏览 6 评论 0原文

你好,我是 sql (postgresql) 新手
我有 2 个表作为 2 个不同选择的结果

       all calls                    our customer contacts
   number contact_id      and     contact_id    name
    3213      12                        12     jonh
    3213      34                        16     michael
    3213      43                        65     hewlet
    5432      16                        32     steward
    5432      51
    6543      65
    2322      54
    2322      32

1 个号码可以属于不同的联系人...(联系人属于不同的客户)我需要选择 与第一个结果表不同的数字。以及第二张表中的联系人姓名..

以及我必须如何联合我的 2 个选择,

谢谢。

hello i'm newbie in sql (postgresql)
i have 2 tables as result of 2 differen selects

       all calls                    our customer contacts
   number contact_id      and     contact_id    name
    3213      12                        12     jonh
    3213      34                        16     michael
    3213      43                        65     hewlet
    5432      16                        32     steward
    5432      51
    6543      65
    2322      54
    2322      32

1 number can belong to different contacts... (contacts belong to different customers) i need to select
distinct numbers from 1st result table. and names of this contacts from 2nd table..

and how i must unite my 2 selects

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此生挚爱伱 2024-08-25 14:00:10

您将无法使用 distinct 关键字,因为您实际上还想从 all_calls 表中选择 contact_id。相反,您需要使用聚合函数之一为每个不同的电话号码选择一个 contact_id

在此示例中,我使用 min() 函数,该函数将为我提供每个电话号码的 contact_id 数字最小的联系人:

select tmp.number, contacts.name
from (
  select number, min(contact_id) as min_id
  from all_calls
  group by number
) as tmp
join contacts on tmp.min_id = contacts.contact_id

You will not be able to use the distinct keyword, as you actually want to select also the contact_id from the all_calls table. Instead, you will need to use one of the aggregate functions to select a single contact_id for each distinct phone number.

In this example I use the min() function, which will give me the contact with the numerically lowest contact_id for each phone number:

select tmp.number, contacts.name
from (
  select number, min(contact_id) as min_id
  from all_calls
  group by number
) as tmp
join contacts on tmp.min_id = contacts.contact_id
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文