gpt4 book ai didi

php - 先查询,然后随机化,然后检索剩余字段

转载 作者:行者123 更新时间:2023-11-29 11:24:48 24 4
gpt4 key购买 nike

我有一个包含大约 70 列和 120,000 行数据的表。我想要做的是随机化一条记录,然后显示该记录的其他列的值。如果我确实获取所有数据,

$result=mysqli_query($link, 'SELECT id, column1, column2, column3, ..., column 70 from table');
while ($row=mysqli_fetch_array($result))
{
$info[] = array('id'=>$row['id'], 'column1'=>$row['column1'], ...);
}
$randindex = rand(0,count($info));
$id = $info[$randindex]['id'];
echo $info[$randindex]['column1']; echo $info[$randindex]['column2']; ....

恐怕这会显着减慢进程。所以我想只查询随机化之前的ID,然后使用随机化的ID来检索数据库中该记录的其他值。

$result=mysqli_query($link, 'SELECT id from table');
while ($row=mysqli_fetch_array($result))
{
$info[] = $row['id'];
}
$randindex = rand(0,count($info));
$id = $info[$randindex];

然后以某种方式检索该特定记录的所有其他字段。我问如何在SQL中做到这一点here但我想知道除了SQL之外是否还有其他更有效的方法。我需要做一个像 this 这样的循环吗? ?

最佳答案

在您的代码中,执行以下操作:

select min(id) as minid, max(id) as maxid
from table;

然后使用 php 生成随机 id 并执行以下操作:

select t.*
from table t
where t.id >= $randid
order by id
limit 1;

有了 id 上的索引——并且合理地假设值之间没有太大的差距——那么这会很好地工作。

您可以在一个查询中执行相同的操作:

select t.*
from table t cross join
(select min(id) as minid, max(id) as maxid from table) tt
where t.id >= minid + rand() * (tt.maxid - tt.minid)
order by id
limit 1;

关于php - 先查询,然后随机化,然后检索剩余字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38413122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com