I am needing some assistance with a query. I would like to pull all requirements from the td.req and td.req_cover table that do not have test cases associated with them Here is my query. I would like for it to do the exact opposite.
Select RQ_REQ_NAME,RQ_USER_07,RQ_USER_11,TS_NAME,TS_STEPS
from td.REQ,td.test,td.REQ_COVER where RQ_REQ_PATH like 'ACL%'
AND RC_REQ_ID=RQ_REQ_ID
AND RC_TEST_ID=TS_TEST_ID
order by RQ_USER_07
***I want all instances of the requirement name, etc that does not have a test associated with it. If you need more information please let me know. I have tried a subquery and NOT EXISTS and no luck. Thanks in advance!
Newbie at this!
Select RQ_REQ_NAME,RQ_USER_07,RQ_USER_11,TS_NAME,TS_STEPS
from td.REQ,td.test,td.REQ_COVER where RQ_REQ_PATH like 'ACL%'
AND RC_REQ_ID=RQ_REQ_ID
AND RC_TEST_ID=TS_TEST_ID
order by RQ_USER_07
***I want all instances of the requirement name, etc that does not have a test associated with it. If you need more information please let me know. I have tried a subquery and NOT EXISTS and no luck. Thanks in advance!
Newbie at this!