1
Validated News / Re: WavPack 5.5.0 Released
Last post by Aleron Ives -
A simple Shift + Reload picked up the change for me.Ha, that worked!
select a.path
from mediaLibrary a
inner join
(select artist, title, length
from MediaLibrary
group by artist, title, length
having count(*)>1
) b on (a.artist is b.artist
and a.title is b.title
and a.length is b.length)
order by a.title