Random query of databases

Source: Internet
Author: User

SELECT * FROM 'table' WHERE id> = (SELECT floor (RAND () * (select max (id) FROM 'table '))) order by id LIMIT 1; finally, complete the statement and add the MIN (id) judgment. At the beginning of the test, because I did not add the MIN (id) Judgment, half of the time is always the first few rows in the table. The complete query statement is: SELECT * FROM 'table' WHERE id> = (SELECT floor (RAND () * (select max (id) FROM 'table ') -(select min (id) FROM 'table') + (select min (id) FROM 'table') order by id LIMIT 1; 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; finally, the two statements are queried for 10 times in php respectively. The former takes 0.147433 seconds, and the latter takes 0.015130 seconds. It seems that the JOIN syntax is much more efficient than using functions directly in the WHERE clause.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.