我需要用两个不同的WHERE子句语句查询同一列。

我正在与Magento合作,无法更改表格格式。

表格检视:catalog_product_entity_varchar

entity_id | attribute_id | value                |
5         | 60           | Bear Apprentice      |
5         | 86           | bear-apprentice      |
5         | 71           | Item Description     |
5         | 74           | /a/p/apprentice2.jpg |


我希望将其显示为:

entity_id | Item Name            |  img                   |
5         |  Bear Apprentice     | /a/p/apprentice2.jpg   |


最终使attribute_id 6074出现在同一行中,但出现在两个单独的列中。
是否可以对列别名执行WHERE子句?

谢谢!

最佳答案

在mySQL中,一种透视的方法是使用casemaxgroup by。这确实假设一个entity_Id只能有一个成对的值(每个实体每个值1个属性),例如60对于实体5只能出现一次。

SELECT entity_ID
     , max(case when attribute_Id = 60 then value end) as `Item Name`
     , max(case when attribute_Id = 74 then value end) as img
FROM tableName
WHERE entity_ID = 5
GROUP BY entity_ID

关于mysql - 两列,相同数据,不同子句,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40727958/

10-11 05:15