Número aleatorio de MySQL entre 1 y 100

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

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