The following queries have the same result, although they have different seed numbers:
SELECT * FROM Customers ORDER BY RAND();
SELECT * FROM Customers ORDER BY RAND(5);
SELECT * FROM Customers ORDER BY RAND(1290);
SELECT * FROM Customers ORDER BY RAND(0.121);
How do I write a query that returns the same result for a specific seed but a different result for a different seed? I want to keep the random order for the same seed.