を持つグループ:結果として組合複数のテーブルと集計(SQLiteの)
table1
id | part | price
1 | ox900 | 100
2 | ox980 | 200
と
table2
id | part | price
1 | ox560 | 560
2 | ox980 | 120
私が欲しいですそのようなスキーマを取得する:
SELECT *
FROM (select part, price from supportContacts
union all
select part, price from supportContacts2)
group by part
が、それはまさに私が達成したいものではありません。
id | part | priceTable1 | priceTable2 | minPrice
1 | ox900 | 100 | | 100
1 | ox980 | 200 | 120 | 120
1 | ox560 | | 560 | 560
は
が、今私は、このようなクエリを持っている...それは
minPrice
列なしでできる簡単にします。
私は上記のことを何とかしてもいいですか?
もフィドル:http://sqlfiddle.com/#!7/f7401/7/0
代わりに外部結合を行います。 – jarlh