>Just for information, related to this, I had to temporarily disable the
>LastFM similar artists related SQL Playlist templates and mixes in 7.6
>because I haven't figured out how to combine "union" and "order by
>random()" with SQLite yet. But the Custom Browse related problems
>should work with the above Custom Scan release.

Could you use a construct like:

SELECT *
FROM (
        SELECT ...
        UNION ALL
        SELECT ...
        ) as query
ORDER BY random()
_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to