Yii2中使用order by locate的写法
- 2019 年 10 月 5 日
- 筆記
原生写法如下
select * from vd_video order by locate(video_type_id,'3,7,6') desc
Yii中写法如下
$type_ids = '3,7,6'; Video::find()->orderBy([new Expression("locate(video_type_id, '$type_ids')")])->asArray()->all();