2017-12-18, 17:06
@zerocool_ie Thanks, that works!
Is there a way to have it show the file locations? I found this:
http://kodi.wiki/view/Databases
But, I don't know mySQL.
UPDATE: Nevermind, I figured it out!
Is there a way to have it show the file locations? I found this:
http://kodi.wiki/view/Databases
But, I don't know mySQL.
UPDATE: Nevermind, I figured it out!
sql:SELECT c00, dateadded AS DateAdded,
'Dupe Movie' AS description,
strfilename AS FILE,
strPath AS FILE
FROM movie_view a
JOIN (
SELECT uniqueid_value
FROM movie_view
GROUP BY uniqueid_value
HAVING COUNT(*) > 1) b ON a.uniqueid_value = b.uniqueid_value
ORDER BY strfilename ASC;