|
IDとフィールドAは一意
フィールドAの同じものは後のデータを優先するが
空白だったフィールドは上書きしないこんなこと
どうやったらできますか?
(下のテーブルは英単語をランダムに
選んで打ちました。特に意味はありません。
実際の表はもっと実用的。)
------------------------------------------テーブル1(入力)
ID フィールドA フィールドB フィールドC
1 sample example Whoops
2 validate won't seconds
3 example like dislike
------------------------------------------テーブル2(入力)
ID フィールドA フィールドB フィールドC
1 sample example Whoops
2 validate want Minute
3 takes like didn't
4 example this
------------------------------------------テーブル3(出力)
ID フィールドA フィールドB フィールドC
1 sample example Whoops
2 validate want Minute
3 takes like didn't
4 example like this
|
|