How can we get the list of boards associated with a Sprint through SQL query from JIRA DB.
SELECT sprint."NAME" as "Sprint Name", board."NAME" as "Board Name"
FROM "AO_60DB71_RAPIDVIEW" board
JOIN "AO_60DB71_SPRINT" sprint ON board."ID" = sprint."RAPID_VIEW_ID"
This query gives the Sprint and the board in which the sprint is created. But I would like to have the Sprints and all the boards, the sprint appears.