I am using the below query, but it is not working
select p.description,i.summary
from PUBLIC.PROJECTS p
inner join PUBLIC.ISSUES i on p.ID=i.PROJECTID
where p.jql='LEAD = "username"'
Hi Pranitha Gaddam,
(1) You have to access the ISSUES table first and perform the jql on it.
(2) Then, join the PROJECTS table to get project attributes for each issue in (1)
This would be the SQL+JQL query:
select p.description,i.summary
from ISSUES i
join PROJECTS p on p.ID=i.PROJECTID
where i.jql='LEAD = "username"'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Stop using SQL, it's the worst possible way to report anything in Jira.
For a start, you do not understand the structure of the data or tables, and I'm not sure about your SQL either, as the last line is nonsense.
But, if you must, then you need to explain the actual question: It's clear you want all issues that match a question, but the kernel of your question is unclear. "by project lead". Where the project lead is the assignee? Or Reporter? Or something else?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The user means the SQL for Jira Driver app available on the Marketplace.
The Driver does not use the native database in any way:
It brings a new BUSINESS database schema (tables and columns) that users understand and love.
The queries are also easier to write than Jira native database SQL as they are business-oriented.
They also support JQL to filter issues (please have a look at the WHERE clause in the example)
The Driver aborts users' reckless queries, so it is not easy to cause performance issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That was not clear in the question. I gave the correct answer for users thinking about direct access via SQL.
I'm aware of how that application works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.