あなたのスキーマを正しく理解していれば、これがあります
Table1: Column1
hai,
how,
are,
you.
Table2: Column2
i,
am,
fine.
これを行う:
Insert Into Table1 (Column1)
Select Column2 From Table2
あなたはこれを得るでしょう:
Table1: Column1
hai,
how,
are,
you.
i,
am,
fine.
3 つの列がある場合は、次のようにします。
Insert Into Table1 (Column1, Column2, Column3) //the (Column1, Column2, Column3) is not neccessary if those are the only columns in your Table1
Select Column1, Column2, Column3 From Table2 //the Select Column1, Column2, Column3 could become Select * if those are the only columns of your Table2
編集:テーブルを変更したくない場合は、これを行ってください。
Select Column1, Column2, Column3
From Table1
UNION ALL
Select Column1, Column2, Column3
From Table2