How to list issues where issue link is created after a specific date
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
To retrieve all issues from database where issue link (eg: relates to) is created after a specific date.
Solution
Login to JIRA database
Run the following SQL:
1 2 3 4 5 6 7 8
select cg.issueid from changegroup cg, changeitem ci where cg.id = ci.groupid and ci.field = 'Link' and ci.newstring like '%relates to%' and cg.created > '2018-07-10 11:00:00.000+08';
ℹ️ Modify the date time accordingly
Updated on April 2, 2025
Was this helpful?
Still need help?
The Atlassian Community is here for you.