TABLE 1
id time1 info
1 110 info1
2 120 info2
TABLE 2
id time2 info
1 100 info3
2 130 info4
一度に両方のテーブルからデータを取得し、time1 と time2 で並べ替えるにはどうすればよいですか (同じことですが、フィールドの名前は異なります)。
Expected result row ids:
1 // table 2
1 // table 1
2 // table 1
2 // table 2