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.
私はOracleテーブルのEMP列がNAME、AGE、DEPTです。
「selectステートメント」を使用してEMPからデータを取得したい。
Select Name, age, dept from Emp;
select Dept, age, emp from Emp;
データの取得に時間がかからないのはどれですか?
それともリトリーブ時間は変わらないのでしょうか?
あなたが使用することができます
Select Name, Age, Dept From EMP
または、EMP テーブルに 3 つの列しかない場合は、使用するよりも
Select * from EMP.
どちらも同じ時間がかかります..
あなたの質問では、2 番目のクエリは時間がかかります。これは、2 つの time dept 列を使用しているためです。
パフォーマンスを向上させるために、EMP テーブルにインデックスを作成できます。