Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created March 24, 2019 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kcko/b0691fd7319904c9c8cfd6999825bed1 to your computer and use it in GitHub Desktop.
Save Kcko/b0691fd7319904c9c8cfd6999825bed1 to your computer and use it in GitHub Desktop.
-- For range (min..max( (min inclusive, max exclusive) it is:
FLOOR( RAND() * (max-min) + min )
-- For range (min..max) (min+max inclusive) it is:
FLOOR( RAND() * (max-min+1) + min )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment