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

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

WBOY
WBOYOriginal
2016-06-06 20:36:271003Durchsuche

我的数据表如下:
排序 - 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>

回复内容:

我的数据表如下:
排序 - 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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn