Jellyfin – Find Duplicate Movies

1
2
3
4
5
6
7
8
9
SELECT a.path,a.name, a.UnratedType
FROM TypedBaseItems a
JOIN (SELECT name, path, UnratedType
FROM TypedBaseItems
WHERE UnratedType = 'Movie'
GROUP BY name
HAVING COUNT(*) > 1 ) b
ON a.name = b.name
ORDER BY a.name

Post a comment

You may use the following HTML:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">