2017-07-28 80 views
1

我有兩個表:產品和元。加入與另一個表的自連接表

產品表:

+----+----------+ 
| id | name  | 
+----+----------+ 
| 1 | TV  | 
| 2 | Computer | 
| 3 | Freezer | 
+----+----------+ 

元表:

+----+------------+-----------+------------+ 
| id | product_id | meta_key | meta_value | 
+----+------------+-----------+------------+ 
| 1 |   1 | currency | USD  | 
| 2 |   1 | price  | 1100  | 
| 3 |   2 | currency | PLN  | 
| 4 |   2 | price  | 9300  | 
| 5 |   3 | currency | USD  | 
| 6 |   3 | price  | 1200  | 
+----+------------+-----------+------------+ 

現在下面的查詢工作正常:

select price.product_id, products.name, price.meta_value as 'price', currency.meta_value as 'currency' 
from meta as price 
join meta as currency on(price.product_id=currency.product_id and currency.meta_key='currency') 
join products on(products.id=price.product_id) 
where price.meta_key='price'; 

結果:

+------------+----------+-------+----------+ 
| product_id | name  | price | currency | 
+------------+----------+-------+----------+ 
|   1 | TV  | 1100 | USD  | 
|   2 | Computer | 9300 | PLN  | 
|   3 | Freezer | 1200 | USD  | 
+------------+----------+-------+----------+ 

但查詢:

select price.product_id, products.name, price.meta_value as 'price', currency.meta_value as 'currency' 
from meta as price, meta as currency 
join products on(products.id=price.product_id) 
where 
    price.product_id=currency.product_id 
    and price.meta_key='price' 
    and currency.meta_key='currency'; 

回報: 「未知列 'price.product_id' '的條款'」

爲什麼會發生呢?

回答

2

你「從」條款被解釋爲:

from meta as price, (meta as currency join products on (products.id = price.product_id)

所以,沒有price.product_id提供給上條款,因爲它僅知道的meta as currencyproducts表。

+0

這很有道理,我嘗試了'貨幣',現在它的工作。謝謝 – ArturoO