I\'m trying to extract the start and end days of my sprints from the Jira database. This would seem like a simple task, but it really (as far as I have found out at least) i
SELECT * FROM a0_60db71_sprint
This is a MySQL question, not java.
Connect to your JIRA MySQL Database and look for a table that matches *_sprint
*_sprint
The fields on the above table are:
Closed (boolean)
ID (key)
Start_Date (timestamp)
End_Date (timestamp)
Complete_Date (timestamp)