Hi Team,
How to find new projects in Jira(particular interval), I believe it is possible to get a list from the database.
Can you help me to get a list of new project in the time period of six months, we are using Postgres database.
Thanks in Advance.
There's no entry of project creation on DB.
The best way will be to look at the dates of the first created issue (if there is one).
If you don't have any issues in it, then the last resort is the project ID - these always go up, although they're not contiguous.
Below query can give you some idea;
SELECT *
FROM jirasd.project
WHERE ID IN
(
SELECT DISTINCT (project)
FROM jirasd.jiraissue
WHERE created > TO_DATE ('01/01/18', 'DD/MM/YY')
);
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.