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 つの複雑な select ステートメントがあり、それぞれが同じ型の 1 つの値を返します。UNION のように機能する 1 つのステートメントにそれらを結合しようとしていますが、1 つの列に 2 つの行を返す代わりに、それぞれが値の 1 つを含む 2 つの明確な名前の列を返します。これを行う簡単な方法はありますか?
あなたはいつでもできる
SELECT (SELECT the_first_select) AS col1, (SELECT the_second_select) AS col2 FROM DUAL
select (select 'expr1'), (select 'expr2')