oke so i tryed
SELECT rand(),* FROM mail ORDER BY domain ASC LIMIT 3
And (kinda what i expected) just a orderd result. The rand() gives me some random numbers. But he doesn't random pick rows.
But then again i got this new idea because of your post:
SELECT *,rand() as t1 FROM mail ORDER BY t1,domain ASC LIMIT 3
And i got what i want π woeiii
And what i really found odd is that
SELECT * FROM mail ORDER BY rand() LIMIT 3
Is just as fast... uhm slow (0.2 sec on a 16000 field db).
Oke so i got it. Now i can finnaly proceed with my email application π