October 2016
Beginner
450 pages
7h 59m
English
The jiraissue table is used to store JIRA issues. Let's check the structure of this table.
Run the following query:
desc jiraissue;
The output of this query is as follows:

It's quite easy to find the list of issues of a specific project using the JIRA Issue Navigator, but as we are exploring the database schema and its various tables, let's fetch the issues of a specific project directly from the database:
SELECT p.id AS project_id, p.pname AS project_name, CONCAT("SSP- ",ji.issuenum) AS issue_id, ji.reporter AS issue_reporter FROM project p LEFT OUTER JOIN jiraissue ji ON ...Read now
Unlock full access