从多个表中检索数据,其中第二个表具有计数功能

时间:2014-02-01 12:47:13

标签: asp.net sql sql-server join linq-to-sql

enter image description here

enter image description here

我有两个名为test_package& amp; Test_info。 Test_info表与test_package具有外键关系,列名为associated_pa​​ckage。我想检索一个包含有多少测试..... 查询的输出应如下图.....

enter image description here

1 个答案:

答案 0 :(得分:0)

SELECT Package_id, COUNT(Test_id) FROM test_Package tp
INNER JOIN Test_info ti ON ti.associatedPackage = tp.Package_id
GROUP BY Package_id