The actual operations on random data retrieved from the table in the MySQL database were discussed in the group before. mySQL (the best combination with PHP) syntax can be said to be quite fun. they all wanted to use PHP to implement random queries, but retrieving multiple entries seemed to require more than two queries. MySQL database to retrieve random data from tables
The actual operations on random data retrieved from the table in the MySQL database were discussed in the group before. mySQL (the best combination with PHP) syntax can be said to be quite fun. they all wanted to use PHP to implement random queries, but retrieving multiple entries seemed to require more than two queries. MySQL database to retrieve random data from tables
The actual operations on random data retrieved from the table in the MySQL database were discussed in the group before. mySQL (the best combination with PHP) syntax can be said to be quite fun. they all wanted to use PHP to implement random queries, but retrieving multiple entries seemed to require more than two queries.
MySQL database implements random data retrieval in the table:
- SELECT * FROM table_name ORDER BY rand() LIMIT 5;
Rand said this in the manual:
RAND ()
RAND (N)
Returns a random floating point value ranging from 0 to 1.0. If an integer parameter N is specified, it is used as a seed value.
MySQL (the best combination with PHP)> select RAND ();
-> 0.5925
MySQL (the best combination with PHP)> select RAND (20 );
-> 0.1811
MySQL (the best combination with PHP)> select RAND (20 );
-> 0.1811
MySQL (the best combination with PHP)> select RAND ();
-> 0.2079
MySQL (the best combination with PHP)> select RAND ();
-> 0.7888
You cannot use the column with the RAND () value in an order by clause, because order by will calculate the column multiple times. However, in MySQL (the best combination with PHP) 3.23, You can do: SELECT * FROM table_name order by rand (), which is conducive to obtaining a SELECT * FROM table1, table2 WHERE a = B AND c
MySQL database implements random data removal from tables. However, I tried to execute a 0.08-thousand-record table, which requires sec.
Later I consulted google and got the following code:
- SELECT *
- FROM table_name AS r1 JOIN
- (SELECT ROUND(RAND() *
- (SELECT MAX(id)
- FROM table_name)) AS id)
- AS r2
- WHERE r1.id >= r2.id
- ORDER BY r1.id ASC
- LIMIT 5;
The execution efficiency requires 0.02 sec. Unfortunately, only MySQL (the best combination with PHP). * And above support such subqueries.
The above content introduces how to retrieve random data from the MySQL database.