我正试图通过产品ID,desc或asc从商品表订购中获取所有商品。
查询:
public function getAllItems($brandid)
{
$data=DB::table('items')->where('brandid',$brandid)
->orderBy('productid' , 'desc')
->get();
return $data;
}
数据显示没有按产品ID排序,orderBy无效。问题在哪里?
答案 0 :(得分:1)
好的,问题解决了,我有两个同名的函数,我的错误。谢谢
答案 1 :(得分:1)
检查查询语句以确认查询构建器的问题:
<html>
<body>
<footer>
<?php include ('common/footer_links.php');?>
</footer>
</body>
</html>