2 つのテーブルから 2 つの列を取得する 1 つの SQL クエリを生成する必要があります。
where 句では、id は1,2,3,4 and 5
です。
上記の条件で単一のクエリを作成する方法。
SQLクエリのみが必要ですが、カーソルや関数の概念は必要ありません。
例えば;
select column 1, column2 from table1, table2 where id=1
select column 1, column2 from table1, table2 where id=2
select column 1, column2 from table1, table2 where id=3
select column 1, column2 from table1, table2 where id=4
これらの複数のクエリを単一のクエリにする方法???
前もって感謝します。