SQL 查询:需要有关子查询的帮助
问题如下:
有 2 个相关的表(我给出了一些示例值以使其简化):
Circuit
--------
id name
1 a
2 b
3 c
Circuit_Dependent
-----------------
id depend_id
1 2
1 3
这些表是相关的,第二个表讲述了与电路 ID 的关系。
需要查询情况:
1)列出具有Circuit_dependency的电路名称 预期输出:
name dependent_name
a b
a c
2)列出电路名称和计数(依赖项数量)
预期输出:
name count
a 2
感谢帮助。
Question is as follows:
There are 2 related tables (am giving some sample values for making it simplified):
Circuit
--------
id name
1 a
2 b
3 c
Circuit_Dependent
-----------------
id depend_id
1 2
1 3
the tables are related and second table tells the relation with the circuit id's.
Situation is query needed for:
1) list the circuit name which has the circuit_dependency
output expected:
name dependent_name
a b
a c
2) list the circuit name and count(no of dependancies)
output expected:
name count
a 2
appreciate help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个查询可能是:
第二个查询可能是这个:
First query could be:
Second query could be this one: