SELECT DISTINCT pl.id, pl.title, u.username from playlist pl, user u, segment s, playlistsegs pls where pl.id=pls.playlist_id and pls.segment_id=s.id and s.media_id=10001 and pl.author_id=u.id and pl.deleted=false and pl.submitted=true order by pl.mod_time desc LIMIT 0, 20
|