通常のselect句よりもfrom句でselect句を使用する利点は何ですか?. 例のために。
select name, age, address from emp where
empid = 12.
上記のクエリに対する以下のクエリの利点は何ですか。
select A.name, A.age, A.address from (select
* from emp where empid = 12) as A.
内部クエリは一時ビューを作成し、その結果から、選択された最初のクエリのフィールドを作成します。右 ?。ただし、この質問の上部に記載されているクエリを使用して、同じ結果を取得することもできます。
利点は何ですか?ありがとう。