Home > Backend Development > PHP Tutorial > 排序 - thinkphp框架下数据库中多个参数取值计算问题

排序 - thinkphp框架下数据库中多个参数取值计算问题

WBOY
Release: 2016-06-06 20:36:27
Original
1005 people have browsed it

我的数据表如下:
排序 - thinkphp框架下数据库中多个参数取值计算问题

排序 - thinkphp框架下数据库中多个参数取值计算问题

我的目的是在broker_achieve表中取出在上一周里comments、 answers、members的回答数,按照comments数权重50%、answers数权重25%、members权重25%来计算出数值后将这个数字放在broker表的broker_sort中。以后调用的时候利用broker_sort来排序。

对于thinkphp如何操作取出来的数据我有点搞不定了。。。

<code>public function refresh(){
        $achieve=M('broker_achieve');//经纪人成就
        $broker=M('broker');//经纪人详情表 broker_sort 是经纪人的排序数值 大到小
        $thisyear=date('Y');
        $thisweek=date('W')-1;//获取要统计的周(上周)
        $thisachieve=$achieve->where("year=$thisyear and week=$thisweek");//获取时间段内的所有数据



    }
</code>
Copy after login
Copy after login

回复内容:

我的数据表如下:
排序 - thinkphp框架下数据库中多个参数取值计算问题

排序 - thinkphp框架下数据库中多个参数取值计算问题

我的目的是在broker_achieve表中取出在上一周里comments、 answers、members的回答数,按照comments数权重50%、answers数权重25%、members权重25%来计算出数值后将这个数字放在broker表的broker_sort中。以后调用的时候利用broker_sort来排序。

对于thinkphp如何操作取出来的数据我有点搞不定了。。。

<code>public function refresh(){
        $achieve=M('broker_achieve');//经纪人成就
        $broker=M('broker');//经纪人详情表 broker_sort 是经纪人的排序数值 大到小
        $thisyear=date('Y');
        $thisweek=date('W')-1;//获取要统计的周(上周)
        $thisachieve=$achieve->where("year=$thisyear and week=$thisweek");//获取时间段内的所有数据



    }
</code>
Copy after login
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