
- SQL Tutorial
- SQL - Home
- SQL - Overview
- SQL - RDBMS Concepts
- SQL - Databases
- SQL - Syntax
- SQL - Data Types
- SQL - Operators
- SQL - Expressions
- SQL Database
- SQL - Create Database
- SQL - Drop Database
- SQL - Select Database
- SQL - Rename Database
- SQL - Show Databases
- SQL - Backup Database
- SQL Table
- SQL - Create Table
- SQL - Show Tables
- SQL - Rename Table
- SQL - Truncate Table
- SQL - Clone Tables
- SQL - Temporary Tables
- SQL - Alter Tables
- SQL - Drop Table
- SQL - Delete Table
- SQL - Constraints
- SQL Queries
- SQL - Insert Query
- SQL - Select Query
- SQL - Select Into
- SQL - Insert Into Select
- SQL - Update Query
- SQL - Delete Query
- SQL - Sorting Results
- SQL Views
- SQL - Create Views
- SQL - Update Views
- SQL - Drop Views
- SQL - Rename Views
- SQL Operators and Clauses
- SQL - Where Clause
- SQL - Top Clause
- SQL - Distinct Clause
- SQL - Order By Clause
- SQL - Group By Clause
- SQL - Having Clause
- SQL - AND & OR
- SQL - BOOLEAN (BIT) Operator
- SQL - LIKE Operator
- SQL - IN Operator
- SQL - ANY, ALL Operators
- SQL - EXISTS Operator
- SQL - CASE
- SQL - NOT Operator
- SQL - NOT EQUAL
- SQL - IS NULL
- SQL - IS NOT NULL
- SQL - NOT NULL
- SQL - BETWEEN Operator
- SQL - UNION Operator
- SQL - UNION vs UNION ALL
- SQL - INTERSECT Operator
- SQL - EXCEPT Operator
- SQL - Aliases
- SQL Joins
- SQL - Using Joins
- SQL - Inner Join
- SQL - Left Join
- SQL - Right Join
- SQL - Cross Join
- SQL - Full Join
- SQL - Self Join
- SQL - Delete Join
- SQL - Update Join
- SQL - Left Join vs Right Join
- SQL - Union vs Join
- SQL Keys
- SQL - Unique Key
- SQL - Primary Key
- SQL - Foreign Key
- SQL - Composite Key
- SQL - Alternate Key
- SQL Indexes
- SQL - Indexes
- SQL - Create Index
- SQL - Drop Index
- SQL - Show Indexes
- SQL - Unique Index
- SQL - Clustered Index
- SQL - Non-Clustered Index
- Advanced SQL
- SQL - Wildcards
- SQL - Comments
- SQL - Injection
- SQL - Hosting
- SQL - Min & Max
- SQL - Null Functions
- SQL - Check Constraint
- SQL - Default Constraint
- SQL - Stored Procedures
- SQL - NULL Values
- SQL - Transactions
- SQL - Sub Queries
- SQL - Handling Duplicates
- SQL - Using Sequences
- SQL - Auto Increment
- SQL - Date & Time
- SQL - Cursors
- SQL - Common Table Expression
- SQL - Group By vs Order By
- SQL - IN vs EXISTS
- SQL - Database Tuning
- SQL Function Reference
- SQL - Date Functions
- SQL - String Functions
- SQL - Aggregate Functions
- SQL - Numeric Functions
- SQL - Text & Image Functions
- SQL - Statistical Functions
- SQL - Logical Functions
- SQL - Cursor Functions
- SQL - JSON Functions
- SQL - Conversion Functions
- SQL - Datatype Functions
- SQL Useful Resources
- SQL - Questions and Answers
- SQL - Quick Guide
- SQL - Useful Functions
- SQL - Useful Resources
- SQL - Discussion
SQL - RAND() Function
The SQL RAND() is a function that will display the random values that lie between 0 and 1. and it does not return exactly 1.
The random number is between 0 (inclusive) and 1 (exclusive), so it is between 0 and 1. i.e., the number is greater than or equal to 0 and less than 1.
Syntax
Following is the syntax of the Rand function −
Select RAND(number) AS Alias_name;
Following is the syntax of the RAND() function that is used in the SQL and fetches the data from the created table.
SELECT RAND(column_name) AS Alias_Name FROM table_name;
In the above syntax, we are using the table name that we have created, and we have to define the name of the column on which we want to perform the RAND() function.
Example
In the following example, we are generating the random value using the RAND() function in the SQL.
Following is the query −
SELECT RAND() AS random;
Output
Following is the output of the above SQL query. If you execute as many times as you want, the random value will change as well.
+-------------------+ | random | +-------------------+ | 0.693302660894862 | +-------------------+
Example
In the following example, we can also pass the expression as a parameter to this function as shown below.
Following is the query −
SELECT RAND(225+(RAND()*9));
Output
Following is the output of the above query −
+------------------+ |0.717840310659793 | +------------------+
Example
In the following example, we are multiplying the RAND() function with the some expression i.e. (10-5)+5.
Following is the query −
SELECT RAND()*(10-5)+5 AS randomvalue;
Output
Following is the output of the above query, which always lies between 5 and 10 −
+------------------+ | randomvalue | +------------------+ | 8.29504539625159 | +------------------+
Example
In the following example, we are calculating the floor of the random value, and the number should always be displayed between 5 and 10.
Following is the query to calculate a random number that is >=5 and =10.
SELECT FLOOR(RAND()*(10-5+1)+5) AS floor_of_Rand;
Output
Following is the output of the above query, which always lies between or equal to 5 and 10.
+---------------+ | floor_of_Rand | +---------------+ | 10 | +---------------+