php数据库随机选择,php – 在MySQL数据库中选择两个随机行

我有一个充满图像的数据库,我想吐出并显示两个随机图像.这段代码做得很好,但我不相信这是最好的方法,特别是如果数据库最终会有很多行.我已经研究过使用

MySQL的rand()函数并将其限制为两个结果,但是从我读过的内容来看,rand()在大型数据库上相对较慢.另一个问题是在双数据库查询中.是否有更好的方法可以通过img_id选择两个随机行?

img_id是一个auto_incremented行,但不能假设是连续的.

//get all image ids

$query = $conn->prepare('SELECT img_id FROM images');

$query->execute();

$result = $query->fetchAll();

//create an array in which to put all the ids

$list_imgs = array();

//put the ids into the array to search over

for ($x=0; $x < count($result); $x++) {

array_push($list_imgs, $result[$x]['img_id']);

}

//output two random images

for ($x=0; $x < 2; $x++) {

//create random index for search

$rand = array_rand($list_imgs);

//query to select one image

$query = $conn->prepare('SELECT title, file_loc FROM images WHERE img_id=?');

//random index value in array of img_ids

$query->execute(array($list_imgs[$rand]));

$result = $query->fetchAll();

echo 'title:' . $result[0]['file_loc'] . ''%20.%20%24result%5B0%5D%5B'file_loc'%5D%20.%20'';

}

任何提高查询效率的建议?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值