The nodeassociation table holds the details about versions, components etc. Following is a query that works in the latest JIRA version:
SELECT concat(pr.pkey, '-',ji.issuenum) as issuekey, comp.cname FROM nodeassociation na, component comp, jiraissue ji, project pr WHERE comp.id = na.sink_node_id AND ji.id = na.source_node_id AND na.association_type = 'IssueComponent' AND pr.pkey='DEMO' AND ji.issuenum='123';
As you can see, it gets you details about components of an issue with key DEMO-123. You can similarly get version details as well.
PS: This query was taken from my book - JIRA Development Cookbook - Third Edition. You will find similar examples in Chapter 10 but hope this helps.
Don't. Use the API instead, nodeassociation is one of many tables that is not remotely suitable for querying.
What is the question you are trying to answer here?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.