Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「分」列を持つ2つのテーブルがあります。これらのテーブルは、INNER JOIN で結合されます。今、両方の列「分」でソートされた両方のテーブルからすべてのレコードを印刷したい
例
表 1: 名前 - 分
John - 1 Marc - 3
表 2: 名前 - 分
Gareth - 2 Joe - 3
出力:
John, Gareth, Marc, Joe
2 つのテーブルは、2 つの別個のテーブルのままにする必要があります。
これを試して:
Select name From table1 Union all Select name From table2 order by minute