SQlServer Query for Changed FROM Resolved TO Reopened

Vishnuteerth Ibharampur January 3, 2018

SQlServer Query for getting Issues Changed FROM Resolved TO Reopened
and  Closed to Reopened from givendate

2 answers

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 4, 2018

Why JQL query is not enough for you? It would be like this

status changed from Resolved to Reopened during ("date1", "date2")

You could also pass the JQL query to REST API call (search method) and get all issues which satisfy the condition. It would be a much cleaner solution.

https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-search-get

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 4, 2018

SQL is the single worst possible way to report on Jira, please do it properly with the UI or API.

If you insist on doing it the wrong way, look in the changeitem table, which you'll then need to join to at least two other tables just to get the basics out.

Suggest an answer

Log in or Sign up to answer