Hello all,
SQL query to get all attachment names with issue key from a Particular project?.
Database - Postgresql
Any help would be greatly appreciated.
Thanks in advance,
Ch
Try with:
ELECT pkey, CI.NEWVALUE, CI.NEWSTRING FROM jiraissue JI, changegroup CG, changeitem CI WHERE JI.ID = CG.issueid AND JI.PROJECT IN (select id from project where pname = 'My Project Name') AND CG.ID = CI.groupid AND CI.FIELD = 'Attachment' AND JI.issuestatus IN (select ID from issuestatus where pname = 'Closed');
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.