In Sql Server 2008, I try to use Jira, I have two table and I have some data like this;
JIRAISSUE
ISSUELINK

In this example ID=16554 is a Main Task. 16555 and 16556 are Sub Tasks of 16554. As you can see in JIRAISSUE ,main task and all sub tasks are an issue. And they connected in ISSUELINK table, in SOURCE and DESTINATION columns.
I try to write a query like this but I failed. I try to find a result like this ;
As you can see in the picture, What I want is; showing one row based all main tasks and their sub tasks.
I can't find the right query for this. How can I do that?


ISSUELINKtable. There is no subtasks of subtasks. One main task has two subtask. And I want combine them. – Soner Gönül Oct 28 '11 at 5:59SELECT j.ID, j.Pkey, j.SUMMARY, j.CREATED,j.UPDATED, j.RESOLUTIONDATE ,j2.SUMMARY, j2.CREATED,j2.UPDATED, j2.RESOLUTIONDATE, j3.SUMMARY, j3.CREATED, j3.UPDATED, j3.RESOLUTIONDATE FROM Jira.jiraissue As j INNER JOIN Jira.issuelink i ON i.SOURCE =j.ID INNER JOIN Jira.jiraissue As j2 ON i.DESTINATION =j2.ID and i.SEQUENCE = 0 INNER JOIN Jira.jiraissue As j3 ON i.DESTINATION =j3.ID and i.SEQUENCE = 1– Soner Gönül Oct 28 '11 at 8:08