php Laravelの查询生成器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravelの查询生成器相关的知识,希望对你有一定的参考价值。

$next = Goods::with('goods_image')
    -> select('name','goods.id','type')
    -> where('type',"1") ->where('service_type','like','%,10,%')->where('update_date', '<', $update_date)-> orderBy('update_date', 'desc')->get();
    -> where('type',$type) ->where('service_type','like','%,10,%')->where('update_date', '<', $update_date)-> orderBy('update_date', 'desc')->limit('1')->first();

// get()やfirst()などで取得することができる
echo "<pre>";
print_r($next);
echo "</pre>";

以上是关于php Laravelの查询生成器的主要内容,如果未能解决你的问题,请参考以下文章

php 【PHP】任意の个数の空配列を生成するref:https://qiita.com/_bns/items/1db71514760903621181

Laravel 4 对我的查询进行基准测试

text Laravel5.4以上の使い方【基本】

laravel php工匠错误

laravel 查询生成器查询有啥问题?

Laravel getQueryLog 显示行查询被执行