I have a user database which I use for meetings. What it does is it creates notes for everyone thats going to be in the meeting. Right now, the order people give notes is dependant on the order the select statement returns (right now I have it as desc using the ID#). My boss would like it if it could "randomly" arrange the users. i.e
Day 1:
1 - Bob
3 - John
2 - Beth
5 - Susie
....
Day 2:
5 - Susie
2 - Beth
1 - Bob
3 - John
....
etc.. So no one feels like they are being picked on or it doesn't get stagnant.
What would be nice would be "Select blah blah Order by Random" but I don't think thats an option. Is there anything in mysql to do this or is this something I'm going to have to manipulate after I have the data out of the database? TIA!
Day 1:
1 - Bob
3 - John
2 - Beth
5 - Susie
....
Day 2:
5 - Susie
2 - Beth
1 - Bob
3 - John
....
etc.. So no one feels like they are being picked on or it doesn't get stagnant.
What would be nice would be "Select blah blah Order by Random" but I don't think thats an option. Is there anything in mysql to do this or is this something I'm going to have to manipulate after I have the data out of the database? TIA!