Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query

Frank June 11, 2018

I would like to get list of customfields in JIRA?? I know how to get using API. I would like to get it rows and columns 

2 answers

0 votes
Piotr Bojko
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.
June 12, 2018

With this addon - https://marketplace.atlassian.com/apps/1218767/smart-ql?hosting=server&tab=overview - you can query JIRA with SQL straight from the app or through the special JDBC without to worry about permissions to data.

0 votes
Tuncay Senturk
Community Champion
June 11, 2018

All custom fields are stored in customfields table in Jira.

Also you can find options and values in customfieldoption and customfieldvalue tables.

Is that what you were asking for?

Frank June 11, 2018

Yes, I am looking for sql query.

フェリックス
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 11, 2018

Something simple to get you started? :

select * from customfield limit 10;
select * from customfieldoption limit 10;
select * from customfieldvalue limit 10;

How are you intending to query? 

Suggest an answer

Log in or Sign up to answer