作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用关键字 AS 来组合两列,以便我可以对该列进行排序。
这是目前的完整查询。
$quotes = Quote::where('created_at', '>=', $date)
->where('created_at', '<=', date('Y-m-d').' 23:59:59')
->order_by('upvotes', 'desc')
->paginate(5);
我想做
->order_by('(downvotes - upvotes) as votes', 'desc')
谢谢。
似乎使用 DB::raw() 是唯一的方法,Laravel/Eloquent 就是不理解 AS。
工作解决方案是
$quotes = Quote::select(array('id', DB::raw('(downvotes - upvotes) as votes'), 'upvotes', 'downvotes', 'etc')) // Rest of column needed.
->where('created_at', '>=', $date)
->where('created_at', '<=', date('Y-m-d').' 23:59:59')
->order_by('votes', 'asc')
->paginate(5);
最佳答案
试试这个:
Quote::where('created_at', '>=', $date)
->select(array('id',DB::raw('(downvotes - upvotes) as votes'))) //and what you need
->where('created_at', '<=', date('Y-m-d').' 23:59:59')
->order_by('upvotes', 'desc')
->order_by('votes', 'desc')
->paginate(5);
关于Laravel Eloquent AS 关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15158139/
我是一名优秀的程序员,十分优秀!