Search
→
Menu
#2 (no title)
Cheating at Perl
Cheating at TSQL
Contact
Stuff I Like/Use
Categories
Bend
Chrome
Current Events
Cycling
DIY
Docker
Environmental
Firefox
Freelance
RW Elephant
Giant Cell Tumor
Graphic Design
Guitar
iPhone
Jellyfin
Links
linux
Caddy
CasaOS
Pi
pi-hole
Ubuntu
Microsoft
Onenote
Powershell
PowerToys
Windows 10
Windows 11
Windows 2003
Windows 2008
Windows 2012
Windows 7
Windows 8
Windows XP
Mountain Biking
Music
Navidrome
NextCloud
OpenVPN
Perl
Personal
Privacy
Security
SIBO
SickBeard
Simple Stuff I Forget
Software
Sonarr
Tech
ttrss
Uncategorized
VirtualBox
VisualCron
Wordpress
Divi
Work
‹ prev
0
Jellyfin – Find Duplicate Movies
March 12, 2025
josefek
Uncategorized
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
Leave a Reply
Click here to cancel reply.
→
→
→