Puoi utilizzare rand
funzione in MySQL per ordinare le righe, quindi prendi le prime 10 (o quante ne vuoi) con limit
.
select * from table order by rand() limit 10
Se vuoi solo le domande di matematica:
select * from table where type = 1 order by rand() limit 10