Ouduk3 Posted November 27, 2024 Posted November 27, 2024 Hello. I have this SQL playlist to pick three random VPX tables: select * from games WHERE EMUID=1 order by random() limit 3 I would like to limit it to pick only from my VPX favourites (not Global favourites) instead of the whole VPX collection. Can anyone please help? Thanks
Rappelbox Posted November 27, 2024 Posted November 27, 2024 SELECT g.* FROM games g JOIN playlistdetails p ON g.gameid = p.gameid WHERE emuid=1 AND p.isFav = 1 ORDER BY RANDOM() LIMIT 3;
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now