order by
by順の式にインデックスが付けられていない場合は、特にコストがかかります。だから注文しないでください。代わりに、count()
でランダムオフセットを実行します クエリと同じですが、一度にすべて実行してください。
with t as (
select *
from
products p
inner join
images i using (productid)
where
prodtype = $sometype
)
select *
from t
offset floor(random() * (select count(*) from t))
limit 1
このバージョンの方が速いかもしれません
with t as (
select *, count(*) over() total
from
products p
inner join
images i using (productid)
where
prodtype = $sometype
)
select *
from t
offset floor(random() * (select total from t limit 1))
limit 1