How to generate random numbers with specified digits in MySQL and how to generate random numbers in batches

How to generate random numbers with specified digits in MySQL and how to generate random numbers in batches

1. First introduce several commonly used MySQL functions

RAND() randomly generates a decimal between 0 and 1 (0<1)

CEILING Round up
FLOOR Round down

2. Generate random numbers

-- Generate a 3-digit random number SELECT CEILING(RAND()*900+100);
-- Generate a 4-digit random number SELECT CEILING(RAND()*9000+1000);
-- Generate a 5-digit random number SELECT CEILING(RAND()*90000+10000);
...

Example:

To explain:

-- Generate a random decimal between 0 and 1 0 < RAND() < 1

-- Multiply by 9000 to get a random decimal between 0 and 9000 0 < RAND*9000 < 9000

-- Add 1000 to get a random decimal between 0 and 10000 0 < RAND*9000+1000 < 10000

-- Use the CEILING function to round up, remove the trailing decimals, and get an integer -- or use the FLOOR function to round down, both are CEILING(RAND()*9000+1000)
-- or FLOOR(RAND()*9000+1000)

3. Note

This method of generating a specified number of random numbers is not particularly good because there is a possibility of duplication. The fewer digits a random number has, the greater the probability of repetition. Therefore, this method is only useful in special occasions.

mysql batch generate random numbers

Fake data:

update exercise_data set star_num=FLOOR(1 + (RAND() * 5));

The rand function randomly generates a random number between 0 and 1. Multiplying by 5 will get a random number between 1 and 5, and floor is the previous integer.

The above is the method that I introduced to you to generate a random number of specified digits in MySQL. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Tips for using MySQL's specified range random number function rand()
  • mysql insert a random number into a field (insert a random number into the MySQL database)
  • MySQL Query Random Data 4 Methods and Performance Comparison
  • How to generate random numbers, strings, dates, verification codes and UUIDs in Oracle
  • MySQL method of generating random numbers, strings, dates, verification codes and UUIDs

<<:  Implementation of installing Docker in win10 environment

>>:  Vue mobile terminal realizes the whole process of left sliding editing and deletion

Recommend

Mini Programs use Mini Program Cloud to implement WeChat payment functions

Table of contents 1. Open WeChat Pay 1.1 Affiliat...

Issues with Rancher deployment and importing K8S clusters

Rancher deployment can have three architectures: ...

MySQL 8.0.2 offline installation and configuration method graphic tutorial

The offline installation method of MySQL_8.0.2 is...

Front-end development must learn to understand HTML tags every day (1)

2.1 Semanticization makes your web pages better u...

The difference between HTML iframe and frameset_PowerNode Java Academy

Introduction 1.<iframe> tag: iframe is an i...

MySQL slow query operation example analysis [enable, test, confirm, etc.]

This article describes the MySQL slow query opera...

Detailed explanation of how to cleanly uninstall Docker

First, the server environment information: Reason...

MySQL multi-instance configuration solution

1.1 What is MySQL multi-instance? Simply put, MyS...

Detailed explanation of Vue3.0 + TypeScript + Vite first experience

Table of contents Project Creation Project Struct...

Native JS to achieve cool paging effect

This article uses an example to share with you a ...

How to implement mobile web page size adaptation

I finally finished the project at hand, and the m...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

How to modify the location of data files in CentOS6.7 mysql5.6.33

Problem: The partition where MySQL stores data fi...

Docker packages the local image and restores it to other machines

1. Use docker images to view all the image files ...