Custom field created as Version Picker - SQL Query in database

Ankit Kothari December 4, 2012

Hi,

I have created a custom field (for eg. Release) of type single version picker.

I have created many issues and set this field. Now, I want to search for all JIRA issues for a particular release. Since, I am writing reports in BIRT, I need an SQL query.

I am able to fetch the values for all other custom values, but not for this field. (I have created 3 more fields of type version picker.)

Could you please provide me help on this? May be a sample SQL query or the table which will hold the link to the jiraissue and the value of the release custom field.

Any help on this would be appreciated.

Thanks,

Ankit

3 answers

1 vote
Andrew Frayling
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 26, 2015

Hi Ankit,

I'm hoping you found the solution to what you were looking for, but as I've just had to do the same thing (in case it helps someone else) this is how the data is stored in the database:

 

select distinct(pv.id), cfv.numbervalue, pv.vname
from projectversion pv,
customfieldvalue cfv
where cfv.customfield = 15001
and pv.id = cfv.numbervalue;

where 15001 is the ID of the custom field you're interested in.

Values for individual issues are stored in the CUSTOMFIELDVALUE table and the lookup for the Version name is in the PROJECTVERSION table.

Andrew.

0 votes
Pablo Beltran
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 2, 2015

If you need to access to JIRA data via SQL integrated with Birt, then you might want to have a look at this add-on: Birt Reports for JIRA.

 

0 votes
Naren
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 4, 2012

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events