Do you just want to display one at a time? This example is for a MySQL database and assumes that you have a field which contains a questionnumber from on to ten.
Here's an example;
$randomnumber=rand(1,10);
$result=mysql_query("SELECT * FROM yourtable WHERE fieldquestionnumber='$randomnumber'", $db);
$row=mysql_fetch_array($result);
echo "One question is: ".$row['fieldquestionnumber'];
Hope this helps;