douyan4470 2018-06-04 04:55
浏览 264
已采纳

Yii2:在find() - > where()方法中的orderby

I'm trying to make a query to the database to retrieve a list of favorite products by category

In the category there is an attribute called sortcode after that I have a $categoryids : [3242,1231,6343,1232] and products

$products = Product::find()->where(['category'=>$categoryids])->all();

But the result was not as I expected, item in $products sort by index Now I want all product in category 3242 should be ranked first, then to 1231 ... How do I get the results I want? Sorry for my bad English! Thanks in advance and have a nice day !!

  • 写回答

2条回答 默认 最新

  • douhan5853 2018-06-04 07:00
    关注

    try to use where in condition

    $products = Product::find()
         ->where(['in','category',$categoryids])
         ->orderBy('category DESC')
         ->all();
    

    or if you want to sort it by category's shortcode you should join with categorys table, not tested yet but should works :

    $products = Product::find()
        ->where(['in','category',$categoryids])
        ->joinWith(['categorys' => function ($query) {
            $query->orderBy('shortcode');
        }])
        ->all();
    

    don't dorget to add categorys relations in your Product's model.

    public function getCategorys()
    {
        return $this->hasOne(Category::className(), ['id' => 'category']);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化