最近几天在公司导数据,主要涉及对mysql的操作,几天下来在boss的指正下算是有了一点小心得:
如ex_table表中有100万条数据,主要字段uid,username,password,email,logintime,主键uid,现需要将其中的uid取出做另外一个查询条件,如果直接选择会造成表锁死,内存溢出。如 $query=mysql_query(select * from ex_table)。
技巧一,limit分页
$query=mysql_query('select count(*) as cnt from ex_table ' );$res=mysql_fetch_assoc($query);$cnt=$res['cnt'];$pagesize=1000;$num=ceil($cnt/$pagesize);$start=0;for($i=0;$i<br>技巧二,利用uid分页;效率要高很多<br><p></p><pre class="brush:php;toolbar:false">$query=mysql_query('select max(uid)as max,min(uid) as min from ex_table ' );$res=mysql_fetch_assoc($query);$max=$res['max'];$min=$res['min'];$pagesize=1000;for($i=$min;$i='{$i}'"; $start+=$pagesize;}
desc/explain select from ex_table where ````
就这么多了。