我有兩個表:MySQL的選擇的東西
Article
-article_id
-name
-price
Attributes
-attribute_id
-article_id
-name
-value
我要選擇一切從每一篇文章,如果名稱爲「色」的屬性存在,我想選得過這個值。 這樣一個例子結果如下:
Result_table
article_id; name; price; value
1; thing1; 24$;
2; thing2; 20$; red
3; thing3; 10$; blue
4; thing4; 19$;
見https://meta.stackoverflow.com/questions/333952/why-should-i-provide-an-mcve-for-what-seems-to-me-to-be-a-very -simple-sql-query – Strawberry