order by
bude vždy drahé, zvláště pokud výraz v pořadí podle není indexován. Takže neobjednávat. Místo toho proveďte náhodný offset v count()
jako ve vašich dotazech, ale udělejte to všechno najednou.
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
Tato verze může být rychlejší
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