Forums

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

sql query to show custom fields values

Stanislav Ryzhov April 20, 2015

Hi! I'm using postgresql. And I need to make sql query for database customfield to autocompleate child fields, based on parent field

So i've got something like this:

SELECT cfv.issue, cfv.textvalue as parent, cfv.id=10016 as child1
FROM customfieldvalue cfv
WHERE CFV.customfield=10500;

But column "child1" must be in stringvalue. Instead of this it comes with boolean, and i get "false" result.

What i'm dooing wrong?

1 answer

0 votes
Nic Brough -Adaptavist-
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.
April 20, 2015

Using SQL for a start - you should not do that.  Use the API in JIRA.

If you insist on using SQL, then you'll need to read customfield to work out what type of field you are dealing with and then read "options" if it's the appropriate field type (select list type fields)

Suggest an answer

Log in or Sign up to answer