search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

MySQL | RAND method

schedule Aug 12, 2023
Last updated
local_offer
MySQL
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

MySQL's RAND(~) method returns a random float value between 0 (inclusive) and 1 (exclusive).

Parameters

1. N | int | optional

The seed value to use. By default None.

NOTE

If a particular seed value is specified, the same random number will be generated every time that particular seed value is used. Hence if you run SELECT RAND(3); you will always get 0.9057697559760601

Return value

A random float value between 0 (inclusive) and 1 (exclusive).

Examples

Basic usage

To return a random float value between 0 and 1 (exclusive):

SELECT RAND();
+--------------------+
| RAND() |
+--------------------+
| 0.9960292372815583 |
+--------------------+

To return a random float value between 0 and 10 (exclusive):

SELECT RAND() * 10;
+-------------------+
| RAND() * 10 |
+-------------------+
| 9.803185351009652 |
+-------------------+

Use with FLOOR(~)

To return a random integer between 6 and 12 (exclusive):

SELECT FLOOR(6 + (RAND() * 6));
+-------------------------+
| FLOOR(6 + (RAND() * 6)) |
+-------------------------+
| 11 |
+-------------------------+

Note that by using the FLOOR method we are able to return an integer rather than a floating point value.

Seed parameter

To specify a seed value of 5:

SELECT RAND(5), RAND(5);
+---------------------+---------------------+
| RAND(5) | RAND(5) |
+---------------------+---------------------+
| 0.40613597483014313 | 0.40613597483014313 |
+---------------------+---------------------+

We can see that the same return value is obtained for both columns due to the use of seed value 5.

robocat
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!