Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how do we extract the date of transition from issue

Aroldo Esmerio
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 9, 2019

SELECT
project.pname,
project.pkey,
jiraissue.issuenum,
resolution.pname as resolution,
changegroup.author,
changeitem.oldstring,
changeitem.newstring,
changegroup.created,
jiraissue.updated,
jiraissue.reporter,
project.lead,
issuetype.pname,
issuestatus.pname

FROM
changeitem,
changegroup,
jiraissue,
project,
issuetype,
issuestatus,
resolution


WHERE
changeitem.groupid=changegroup.id
AND changeitem.field='status'
AND jiraissue.reporter = changegroup.author
AND project.id = jiraissue.project
AND issuetype.id = jiraissue.issuetype
AND issuestatus.id = jiraissue.issuestatus
and resolution.id = jiraissue.resolution

and jiraissue.resolution = 'Not Resolved'


order by jiraissue.issuenum ASC



 

 

 

 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events