I have a result set which fetch me Test ID,Module Name,Test Name and few more columns....below is the result
Test ID Module Name Test Name Attempts
--------- ---------------- -------------------- ----------
00009 Sub Process Map Anti Money Laundring 1
00009 Sub Process Map Anti Money Laundring 2
00009 Sub Process Map Anti Money Laundring 4
0000A Fund Transfer(NEFT) Fund Transfer To Account 5
NULL Accounts Credit Card NULL 6
According to the test ID i need to find the attempts and the result should look like...
Test ID Module Name Test Name Attempts
--------- ---------------- -------------------- ----------
00009 Sub Process Map Anti Money Laundring 1
00009 Sub Process Map Anti Money Laundring 2
00009 Sub Process Map Anti Money Laundring 3
0000A Fund Transfer(NEFT) Fund Transfer To Account 1
NULL Accounts Credit Card NULL 1
Thanks in advance..
Test ID Module Name Test Name Attempts
--------- ---------------- -------------------- ----------
00009 Sub Process Map Anti Money Laundring 1
00009 Sub Process Map Anti Money Laundring 2
00009 Sub Process Map Anti Money Laundring 4
0000A Fund Transfer(NEFT) Fund Transfer To Account 5
NULL Accounts Credit Card NULL 6
According to the test ID i need to find the attempts and the result should look like...
Test ID Module Name Test Name Attempts
--------- ---------------- -------------------- ----------
00009 Sub Process Map Anti Money Laundring 1
00009 Sub Process Map Anti Money Laundring 2
00009 Sub Process Map Anti Money Laundring 3
0000A Fund Transfer(NEFT) Fund Transfer To Account 1
NULL Accounts Credit Card NULL 1
Thanks in advance..