Database report query problem – ALM11
♥ 0 |
I could use some help with a database query problem I’m having. The query I’m setting up is intended to generate an Excel report on the current status of a test cycle. Some history on this is that we setup our testing structure such that we keep the same folder structure in Test Lab and just assign a new cycle when we get a new drop. This works well for us for a number of reasons I won’t elaborate on here. So, I run the following report and I get the data I want … basically listing all the tests status (based on execution status, not test status from the actual assigned cycle). Works like a charm: SELECT where order by TESTCYCL.TC_TEST_ID The resultant output lists each test and associated execution status. Now, I want to add a user-defined field that we capture in each test run. This user defined field is a string that the test operator enters the tested against software version. My modified query looks like the following: SELECT where order by TESTCYCL.TC_TEST_ID What I wanted to do is just add the user-defined string to the output. However, instead, I get this huge list of all the test cases with each test case repeated many times. Anyone see anything obvious that I might be doing wrong??? Thanks,
Marked as spam
|