how do you do a random mysql Query?
By "random" do you mean, select one (or more) random rows from a result set? If so, just add <b>order by rand() limit <i>n</i></b> to your query (where <i>n</i> is the number of rows you want.)
This only works with the latest version of MySql.