我有简单的定价模式:
**table reseller**
| **id** | **reseller** |
| 1 | john |
| 2 | mary |
| 3 | peter |
**table products**
| **id** | **product** | **advisory_price** |
| 1 | apple | 1.99 |
| 2 | pear | 2.99 |
| 3 | plumb | 3.99 |
**table custom_price**
| **id** | **product_id** | **reseller_id** | **retail_price**
| 1 | 1 | 1 | 2.50 |
| 2 | 1 | 3 | 2.80 |
| 3 | 3 | 1 | 4.50 |
我们的想法是,自定义价格对于代理商来说是可选的,因此如果他们没有指定它,因此custom_price表中不存在相应的行,则会显示默认的“advisory_price”
我最初的想法是:
SELECT
products.advisory_price,
custom_price.retail_price,
COALESCE(retail_price, advisory_price) AS sales_price
FROM products
LEFT JOIN custom_price
ON
products.id = custom_price.product_id
WHERE
(
custom_price.reseller_id IS NULL
OR
custom_price.reseller_id='2'
)
但是,如果没有为此转销商指定行,那么这会导致行不显示但是其他行也是如此。
然后我想出了一个工会:SELECT
products.advisory_price,
custom_price.retail_price AS sales_price,
FROM products
INNER JOIN custom_price
ON
products.id = custom_price.product_id
WHERE
custom_price.reseller_id='2'
UNION
SELECT
products.advisory_price AS retail_price,
FROM products
WHERE products.id NOT IN
(
SELECT product_id
FROM custom_price
WHERE reseller_id = '2'
)
基本上,如果指定了,则从custom_price表中获取retail_price AS sales_price,并连接在自定义价格表中没有相应行的所有默认价格。
然后我想在id上订购,但是这会给出一个错误,这可能很容易修复,但不知何故我感觉这个UNION有点矫枉过正,它可以用比这个非常大的查询更简单的方式来完成。< / p>
我是对的,如果是这样的话?
答案 0 :(得分:0)
您必须在第一个查询中将table-row
的内容添加到WHERE
子句中:
ON
然后它应该工作