MariaDB includes a RAND()
function that returns a random number. More precisely, it returns a DOUBLE
precision floating point value v
in the range 0 <= v < 1.0
.
This is great, but what if you want to generate an integer within a larger range – and a range that you specify?
Fortunately, there’s an easy technique for doing this.
Continue reading