Created
April 9, 2020 13:48
-
-
Save dorkness-io/cf75eaa710005a41c4bcdfd77c448e16 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
drop table if exists weekly_issues; | |
select | |
p.pkey || '-' || ji.issuenum AS issue_key | |
,ji.summary | |
,ji.reporter | |
,ji.created | |
into temp weekly_issues | |
from jiraissue ji | |
join project p | |
on ji.project = p.id | |
where ji.created >= now() - interval '1 week'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment