带 where 子句的左连接

发布于 2024-09-14 08:52:55 字数 413 浏览 10 评论 0原文

我有 3 个表 A、B 和 C

alt text

我正在这样做:- /* 表 A 和表 B 之间没有关系。表A仅用于向C.Profile提供值*/ 第一步 ) D <---- Select * from C where Profile=1 // 想要给出一个特定的 ProID(我已经从 A 表中成功检索到它)

第二步 ) Output <--- Select B.sname, D.Status from B Left Join D On B.ID=D.ID,

以便输出看起来像上面所示的所需输出表:-

我可以使用单个查询来完成此操作吗?如何?

I have 3 tables A, B and C

alt text

I am doing this :-
/* There is no relation between Table A and Table B . Table A is just used to provide values to C.Profile */
1st step ) D <---- Select * from C where Profile=1 // want to give a specific ProID(I have successfully retrieved it from A table)

2nd Step ) Output <--- Select B.sname,D.Status from B Left Join D On B.ID=D.ID

so that the output looks like the required output table shown above:-

Can I do this by using a single query? how?

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

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

发布评论

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

评论(1

黎夕旧梦 2024-09-21 08:52:55

您的意思是子查询吗:

Select B.DirName,D.Status 
from B Left Join (
    Select * 
    from C 
    where ProId=1) As D 
On B.DirID=D.DirID

最好使用字段列表而不是 *

Do you mean a subquery:

Select B.DirName,D.Status 
from B Left Join (
    Select * 
    from C 
    where ProId=1) As D 
On B.DirID=D.DirID

It is best to use a list of fields rather than *

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文