
#1
How to order results randomly in M...by pushpendrajtp99
In MySQL, you can by using the ORDER BY RAND() clause in your SELECT statement. Here's how it works:
SELECT * FROM your_table
ORDER BY RAND();
Explanation:
SELECT * FROM...