gpt4 book ai didi

postgresql - 如何在 Postgresql 中使用内联 View (从子句中选择)进行外部连接

转载 作者:行者123 更新时间:2023-11-29 12:56:27 24 4
gpt4 key购买 nike

我有一个类似于这个简化示例的查询:

select u.id, sq.score
from usr as u,
(select user_id, score FROM score WHERE bar = ?) as sq
where u.id = sq.user_id

我希望连接 (u.id = sq.user_id) 成为外部连接。我不知道如何在 from 子句中使用 JOIN 和这样的“select”。

我知道我可以做这个例子而不必在 from 子句中使用 select 但这不是我在我的应用程序中需要的。

最佳答案

像这样:

select u.id, sq.score
from usr as u
left join ( -- or right/full join as per your needs
select user_id, score FROM score WHERE bar = ?
) as sq
on u.id = sq.user_id

关于postgresql - 如何在 Postgresql 中使用内联 View (从子句中选择)进行外部连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42153411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com