码迷,mamicode.com
首页 > 数据库 > 详细

死磕mysql(2)

时间:2015-03-12 19:03:03      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

想测试自己的查询语句,导入批量的数据,一开始很慢以为是自己的语句有问题,后来是这个autocommit,效率相差好多好多。。。。。。。。。。。。

delimiter // create procedure new(in num int)  begin  declare i int;  set i=0;  while i<num do

  insert into new values (i,"name");   set i=i+1;  end while;  end // delimiter ;

没建索引,测试

mysql> select * from new where name=‘haha‘; +-----------+------+ | id        | name | +-----------+------+ | 100000000 | haha | +-----------+------+ 1 row in set (0.13 sec)

mysql> select * from new where id=100000000; +-----------+------+ | id        | name | +-----------+------+ | 100000000 | haha | +-----------+------+ 1 row in set (0.00 sec)

mysql> select * from new where name=‘haha‘; +-----------+------+ | id        | name | +-----------+------+ | 100000000 | haha | +-----------+------+ 1 row in set (0.09 sec)

同样的数据查询整形和字符相差好大啊

切记以后多查整形。。。。。

死磕mysql(2)

标签:

原文地址:http://www.cnblogs.com/ututuut/p/4333248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!