Home > Backend Development > PHP Tutorial > mysql数据读取的算法问题

mysql数据读取的算法问题

WBOY
Release: 2016-06-06 20:33:23
Original
992 people have browsed it

有个一对多的问题,
先从顾客表中,读出1000条数据,
再从订单表中,读出这1000个顾客的每位顾客的最新的订单记录,
再从服务表中,读出这1000个顾客的每位顾客的最新的服务记录
这个代码应该怎么写,才是最优的解法?

回复内容:

有个一对多的问题,
先从顾客表中,读出1000条数据,
再从订单表中,读出这1000个顾客的每位顾客的最新的订单记录,
再从服务表中,读出这1000个顾客的每位顾客的最新的服务记录
这个代码应该怎么写,才是最优的解法?

也就是说你查 1000 个顾客最新的交易记录,建议记下每个顾客的最新 订单 ID和 服务ID(可以考虑使用缓存,也可以直接在用户表中新增两个字段),这样就能用 in (ids) 一次查出,1000条对内存要求不是很大,可以直接查出来在代码中遍历。

<code># sql
select * from order where order_id in (order_ids)

# then php
foreach($orders as $order) {
    foreach($customers as $customer) {
        if ($customer->getCustomerId() == $order->getCustomerId()) {
            //...
        }
    }
}
</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template