/
Finding Attachment Location
Finding Attachment Location
MySQL / PostgreSQL
-- Find Attachment Location SELECT CONCAT(p.pkey,'-',ji.issuenum) AS "Issue", f.filename, f.id as "Stored as" FROM fileattachment f, jiraissue ji, project p WHERE ji.ID = f.issueid AND p.id = ji.project;
Sample Result
Issue | filename | Stored as |
---|---|---|
SQLREPORT-27 | sqlReport.png | 10906 |
SQLREPORT-27 | config.png | 10907 |
SQLREPORT-27 | support.txt | 10908 |
Related content
Finding Attachment Statistic in Jira
Finding Attachment Statistic in Jira
More like this
Finding No. Issues for every project
Finding No. Issues for every project
More like this
How to Search Attachments by Filename or Extension
How to Search Attachments by Filename or Extension
More like this
Find all Jira issue in Database
Find all Jira issue in Database
More like this
Release Notes for 5.14.0
Release Notes for 5.14.0
More like this
Finding Project Activity Level
Finding Project Activity Level
More like this