Home > Database > Mysql Tutorial > body text

How to Generate Random Values Within a Specific Range in MySQL?

Patricia Arquette
Release: 2024-10-28 01:47:29
Original
526 people have browsed it

 How to Generate Random Values Within a Specific Range in MySQL?

Selecting Random Values from Specific Range in MySQL

In MySQL, selecting a random value within a specified range can be achieved through the following method:

SELECT ROUND((RAND() * (max-min))+min) AS `foo`
Copy after login

The function RAND generates a random fraction between 0 and 1. By multiplying this fraction with the range (max-min) and adding min, we obtain a random value within the desired range. The ROUND function is used to round the result to the nearest integer.

The query provided, however, will produce only a single random value. If you need to generate multiple random values in a single row, you can consider using the following alternative:

SELECT ROUND((RAND() * (max-min))+min) + 1 AS `foo`
Copy after login

This method ensures that the random values generated are unique by adding 1 to the result.

In the PHP vs. MySQL comparison provided in the answers, MySQL proved to be faster when selecting only the random value. However, if additional columns are required in the result set, PHP becomes more efficient.

The above is the detailed content of How to Generate Random Values Within a Specific Range in MySQL?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!