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.
テーブルから1つの列を2回選択したい。例 (家賃 1 として家賃を選択し、経費からの家賃 2 として家賃を選択します) しかし、それぞれに独自の Where 句があるため、この列を複数回選択する方法がわかりません。2つの異なる条件で1つの列を2回選択したいということです。
1 つの結果行に両方の値を含めたい場合 (これが必要な理由は思いつきませんが、とにかく...)、自己結合のようなものを使用できます。
select a.rent as rent1, b.rent as rent2 from Expense a, Expense b where a.condition and b.condition and a/b-join-condition