网页应显示 PostgreSql 数据库中特定产品类别的一张产品图片。此图像应在每 25 秒后自动更改为其他图像。退回的产品可能是随机的或按顺序排列的。有些产品可能会丢失,有些产品可能会重复,但标准中的大多数产品都应该退回。样本检索之间的可用图像总数可能会略有变化
目前使用下面的代码,每 25 秒执行一次。这需要对数据库进行两次查询:一次查询可能是 slwo 的计数,第二次查询单个图像检索。在子句重复的这两种情况下,在实际应用中 where 子句非常大并且更改它需要在两个地方进行更改。
如何改进这一点,以便单个查询返回样本?列类型不能更改,使用自然主键。如果有帮助,可以添加其他列、触发器、索引、序列。
使用 ASP.NET/Mono MVC3 , npgsql。
$count = select count(*)
from products
where prodtype=$sometype and productid in (select productid from images);
$random = next random integer between 0 .. $count-1;
-- $productsample is result: desired sample product
$productsample = select product
from products
where prodtype=$sometype and productid in (select productid from images)
offset $random
limit 1;
create table products ( productid char(20) primary key,
prodtype char(10) references producttype
);
create table images(
id serial primary key,
productid char(20) references products,
mainimage bool
);