get the question_id from the id field
question = the actual question from the question field
list them in order by the question_id field
as for how to randomize it, it depends on what your needs are...the basic way to is to keep a count of how many questions there (call this value q) are and generate a random number between 1 and q.
then select that question based on the ID generated by the above