Hi Team,
In my instance, many projects are having single digit issues. how can I get a count of issues for each project?
Is it possible to get a list of project and count of issues through the database(Postgres)?
Thanks in advance.
Hi @Raju Anumula,
select count(*), p.pname from jiraissue i, project p where i.project = p.id group by p.pname, i.project;
Thanks a lot, @Tansu Akdeniz.
it's working fine, how we can get project creation date with count and name.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You don't. Project creation date is not recorded.
The project table has the name and the last issue number used, which is probably useful enough (it becomes inaccurate if people have moved or deleted issues in the project)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is possible to get the first issue created date in the projects??
Thanks in advance.
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.