Hi all, My requirement is simple.I want to select random rows from a table.
For example my table having 10 rows I want to select any three rows randomly.Is there
Use the random function.
random
SELECT * FROM tablename ORDER BY random() LIMIT 3;