📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

RAND()



Returns a random floating-point value v in the range 0 <= v < 1.0. To obtain a random integer R in the range i <= R < j, use the expression FLOOR(i + RAND() * (j − i)).

Syntax

RAND()

Examples

SELECT RAND(); ┌────────────────────┐ │ rand() │ ├────────────────────┤ │ 0.5191511074382174 │ └────────────────────┘

Was this page helpful?