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-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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