我有两个表产品和sameProducts

products
---------------------
id    pro_title      price       seller

sameProducts
----------------------
id    pro_id      price       seller


pro_id与产品表中的ID-id是相同的。

如果产品是现有产品,则卖方插入产品,然后在sameProducts表中输入详细信息,但如果是新产品,则在产品表中输入详细信息。我想根据同一个pro_id的两个表中的最低价格获取卖方名称。

最佳答案

select seller from(
  select `id`, price, seller from products
  where id = :id
  union
  select pro_id as `id`, price, seller from sameProducts
  where pro_id = :id
) order by price asc limit 1


将从任一表中具有给定ID的价格最低的行中返回卖方名称。

但是,假设每个表中给定ID的名称都相同,那么寻找价格最低的名称就没有任何意义,因为它们都具有相同的名称。但是您要了,所以这是代码。

10-04 20:06
查看更多