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。
现在我想使用“选择语句”从 EMP 中检索数据;
Select Name, age, dept from Emp;
select Dept, age, emp from Emp;
哪一个将花费更少的时间来检索数据?
还是检索时间不会不同?
您可以使用
Select Name, Age, Dept From EMP
或者,如果您的 EMP 表中只有三列而不是您也使用
Select * from EMP.
两者都需要相同的时间..
在您的问题中,您的第二个查询很耗时,因为您在其中使用了两个时间部门列。
为了获得更好的性能,您可以在 EMP 表上创建索引。