MySQL randomly extracts a certain number of records

MySQL randomly extracts a certain number of records

In the past, I used to directly order by rand() to handle this kind of usage scenario, but the efficiency was really not satisfactory. So I encountered this scenario again recently and looked for a better solution online.

1.order by rand()

Writing method:

SELECT
  id
FROM
  `table`
ORDER BY
  rand()

The disadvantage of this writing method is that the rand function is executed multiple times in the order by, affecting efficiency.

2. max(id) * rand() using join

Writing method:

SELECT
  *
FROM
  `table` AS t1
JOIN (
  SELECT
    ROUND(
      RAND() * (
        (SELECT MAX(id) FROM `table`) - (SELECT MIN(id) FROM `table`)
      ) + (SELECT MIN(id) FROM `table`)
    ) AS id
) AS t2
WHERE
  t1.id >= t2.id
ORDER BY
  t1.id
LIMIT 1;

The big guys on the Internet all recommend the second way of writing, so I'd like to record it down. I feel that the maximum id and the minimum id can be calculated in the program.

The problem here is that if you take multiple records, they must be continuous, so if you don't want to take continuous data, you have to loop. However, this statement is extremely efficient, so loop query can be done.

The above are all the relevant knowledge points. Friends in need can learn from them. Thank you for your support of 123WORDPRESS.COM.

<<:  Element sample code to implement dynamic table

>>:  How to install babel using npm in vscode

Recommend

How to import CSS styles into HTML external style sheets

The link-in style is to put all the styles in one...

Analysis and solution of MySQL connection throwing Authentication Failed error

[Problem description] On the application side, th...

MySQL Best Practices: Basic Types of Partition Tables

Overview of MySQL Partitioned Tables As MySQL bec...

How to use the Clipboard API in JS

Table of contents 1. Document.execCommand() metho...

Two ways to install Python3 on Linux servers

First method Alibaba Cloud and Baidu Cloud server...

Linux /etc/network/interfaces configuration interface method

The /etc/network/interfaces file in Linux is used...

The latest mysql-5.7.21 installation and configuration method

1. Unzip the downloaded MySQL compressed package ...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...

An article to solve the echarts map carousel highlight

Table of contents Preface toDoList just do it Pre...

Practical notes on installing Jenkins with docker-compose

Create a Directory cd /usr/local/docker/ mkdir je...

Using CSS to implement image frame animation and curve motion

The basic principle of all animations is to displ...

js realizes two-way data binding (accessor monitoring)

This article example shares the specific code of ...

How to forget the password of Jenkins in Linux

1.Jenkins installation steps: https://www.jb51.ne...