Page 1 of 1

Deleting multiple Playlists

Posted: Wed Jun 21, 2006 6:02 pm
by kenneth
So my ZVM has 34 playlists, most of them are audiobooks. Each audiobook has its own playlist (yeah, i love my audiobooks!)

If I decide to delete, say, 20 of these playlists, what's the easiest way of doing it? Right click on each one and hit remove? Is there some kind of way so it would work like Explorer by using CTRL or CTRL + SHIFT ? I have Notmad and I currently use it to "clean" my ZVM since it pretty much works like Explorer. But it would be nice if all I have to do is use Mediamonkey and be done with it. Notmad is kinda unstable.

Does anyone know the easiest way to go about doing this?

Posted: Wed Jun 21, 2006 6:11 pm
by Lowlander
I think that you will need to do it one by one in MediaMonkey.

Posted: Wed Jun 21, 2006 6:19 pm
by kenneth
So perhaps this should be on the wishlist?

Posted: Wed Jun 21, 2006 7:03 pm
by Teknojnky
As sort of a work around, you can create a temp playlist and move all the other playlists under it, then delete the temp playlist which should also delete all the nested playlists.

Posted: Thu Jun 22, 2006 8:16 am
by kenneth
nice. I'll try that. Thanks!

Re: Deleting multiple Playlists

Posted: Tue Dec 02, 2025 7:17 pm
by syme321
Posting here because it's the first result in Google.

For others, if you have SQL Editor addon, you can run a query to delete them. After running the query, close Media Monkey and reopen. Naturally back up your DB first if you are unsure.

SQL Editor...
https://www.mediamonkey.com/addons/brow ... ql-editor/

Query to see impacted playlists...
Select * from playlists where playlistname like 'PartialPlayListName%'

Query to delete playlists...
delete from playlists where playlistname like 'PartialPlayListName%'

If unsure ... don't do it :)