I'm making a random selection of 50 items, but when another call is made, I want to select another random 50 that DOES NOT include anything selected previously. How best to do this? Is there an SQL statement that handles this?
// Collect 50 random entries
$stmt = $db->query('
SELECT * FROM db
ORDER BY RAND()
LIMIT 50
');