为什么不要使用 select * from xxx (oracle 亲测)

Posted bailaowu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么不要使用 select * from xxx (oracle 亲测)相关的知识,希望对你有一定的参考价值。

打开已用时间
set timing on;
create table users(id number(20), name varchar2(20), password varchar2(20));
insert into users values(111111111111111, ‘爱新觉罗·启星‘, ‘[email protected]‘);
insert into users(id, name, password) select * from users; // 插入32768条数据
select * from users; 用时40.58秒
select name from users; 用时23.34秒
select * from users; 用时38.58秒
select name from users; 用时23.91秒
select * from users; 用时39.47秒
select name from users; 用时24.28秒











以上是关于为什么不要使用 select * from xxx (oracle 亲测)的主要内容,如果未能解决你的问题,请参考以下文章

select * from 后有多个表的使用方法(已知一个表的结构为xxx 怎样通过select语句把他变成以下结构)

xception: no such table: xxx (code 1 SQLITE_ERROR): , while compiling: Select * from xxx where id= ?

00309_SQL注入问题

使用 pip install 时,为啥 (from versions: xxx) 的列表很短?

sql语法随记

oracle PLSQL 查询语句select t.*, t.rowid from PU.YK t