连接2个表
这是我的查询
SELECT Testcases.Testcase, Tests.Result
FROM Testcases LEFT JOIN Tests ON Tests.TestCaseID=Testcases.ID
WHERE Tests.Release="1.1.111";
但是,我想要的是获取测试用例中的所有行,无论是否 Tests.TestCaseID=Testcases.ID
。对于测试中的每一行,测试用例中都有一个对应于给定版本号的行。
样品:
Testcases table
---------------
ID Testcase
1 TC-1
2 TC-5
3 TC-8
Tests table
-----------
ID TestCaseID Result Release
1 1 OK 1.1.111
2 3 FAIL 1.1.111
我想要得到的是
Testcase Result
TC-1 OK
TC-5 <empty>
TC-8 FAIL
This is my query
SELECT Testcases.Testcase, Tests.Result
FROM Testcases LEFT JOIN Tests ON Tests.TestCaseID=Testcases.ID
WHERE Tests.Release="1.1.111";
However, what I want is to get ALL rows in Testcases, no matter if Tests.TestCaseID=Testcases.ID
. For each row in Tests, there is a single row in Testcases for the given release number.
Samples:
Testcases table
---------------
ID Testcase
1 TC-1
2 TC-5
3 TC-8
Tests table
-----------
ID TestCaseID Result Release
1 1 OK 1.1.111
2 3 FAIL 1.1.111
What I want to get is
Testcase Result
TC-1 OK
TC-5 <empty>
TC-8 FAIL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那么你应该使用外连接:
Then you should use outer join:
如果 Tests.TestcaseID 不等于 Testcases.ID,则它不是联接。你想得到笛卡尔积吗?
如果您只想要测试用例中的所有行,那么只需执行 SELECT * from TESTCASES 即可。
目前尚不清楚你想要什么 - 为什么不给出一个 3 行表的例子?
If Tests.TestcaseID does not equal Testcases.ID then it isn't a join. Are you trying to get the Cartesian product?
If you just want all rows in Testcases then just do SELECT * from TESTCASES.
It isn't clear what you want - why don't you give a 3-row table example?
最后这对我有用,试试吧。
finally this worked for me, try it.