get random record from mysql


/ Published in: SQL
Save to your folder(s)

get some random record from mysql quickly。


Copy this code and paste it in your HTML
  1. SELECT *
  2. 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
  3. WHERE t1.id >= t2.id
  4. ORDER BY t1.id LIMIT 1;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.