MySQL случайное число от 1 до 100

SELECT RAND()*(b-a)+a;
 a = smallest number 
 b = largest number 

SELECT RAND()*(25-10)+10;
AV