Created
April 9, 2020 13:31
-
-
Save dorkness-io/ef386d5b9b0b41cc1578666d9ad2ba71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
p.pkey || '-' || ji.issuenum AS issue_key | |
from jiraissue ji | |
join project p | |
on ji.project = p.id | |
join jiraaction ja | |
on ji.id = ja.issueid | |
and actiontype = 'comment' | |
group by 1 | |
having count(ja.id) >= 10; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment