- 论坛徽章:
- 0
|
小弟目前没有积分,对不住各位大大了,以后有积分一定补上.
foreach SELECT grpIndex,county,grpid
INTO vgrpIndex,vtempcountyID,bgrpid
FROM table_group
SELECT count(*)
INTO vusers
FROM table_grpuser
WHERE grpIndex=vgrpIndex;
SELECT count(*)
INTO vuserfeeuser
FROM table_grpuser
WHERE grpIndex=vgrpIndex and type='1';
.....
.....
insert into table_tmp
values(.......)
--将上面相关值插入tmp表
end foreach
foreach select locationid,countryid
into vlocationid,vcountryid
from location
SELECT sum(grpuser),sum(grprulednum)
INTO vusernum,vrulednum
FROM table_temp
WHERE location=vlocationID and county=vcountyID;
........
....
end foreach
语句如上,grpuser表的数据量在120万左右,group表在3万左右,请问第一个foreach循环中有好的优化方式么?
第二个循环里面的sum是不是也是影响效率的原因?
另外foreach执行的机理是什么?是先执行select取出一个表的所有数据再执行下一个操作,还是select一条数据,然后执行下一个数据呢? |
|