哪个更好的大查询或多个小查询?

时间:2016-05-23 01:45:25

标签: php mysql arrays codeigniter hierarchy

哪个更好又有效?一个大的查询然后只是处理php中的获取查询或从php函数将只创建一个查询小数据的循环函数。请注意表格可以很大(数千个原始)。感谢。

评论表

list = [#items]
for item in list: #instead of a while loop
#do something 
    print item

预期输出为:

id | parent | msg
---+--------+---------      
1  |   0    | hello   
2  |   1    | hi      
3  |   2    | whats up       
4  |   3    | yow       
5  |   1    | hellow   
6  |   2    | nice       
7  |   0    | great