Showing posts with label rand. Show all posts
Showing posts with label rand. Show all posts

Sunday, February 26, 2012

Generate Random Numbers

Hi, how do I use the Rand Function to generate a Random integer value between 1 and 20. Any help will be appreciated.

Thanks

What about this one:

SELECT

CEILING(RAND()*20) AS myrandIntegerBetween0And20