Hi,
We are developing a report which should find the duplicate summary (contains same summary in different tickets).
Are there any possibilities to achieve this using JQL?
Thanks in advance.
Hi @Nikola Perisic - Many thanks for your quick response.
I need a query to find all the duplicate summaries without providing the value like below.
summary ~ "<summary goes here>"
Kindly note: we can achieve this in MySQL with the following query
SELECT summary, COUNT(summary)
FROM issues
GROUP BY summary
HAVING COUNT(summary) > 1;
Do we have any other option in built-in JQL to fetch the similar summary list?
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.