簡體   English   中英

Laravel 子查詢

[英]Laravel sub-query

我有一個看起來像這樣的數據庫:👇👇

圖片🌅

| id            | name          | src         | status    |
| ------------- |---------------| ------------| ----------|
| 1             | nice sun set  | 1020288.jpg | published |
| 2             | poor sun set  | 1120288.jpg | published |
| 3             | best sun set  | 3120288.jpg | deleted   |
| ------------- |---------------| ------------| --------- |

image_views 👀

| id            | image_id      | browser_id🌎 | created_at         |
| ------------- |---------------| ------------ | ------------------ |
| 1             | 2             | 1020288e3221 |2020-02-23 13:55:11 |
| 2             | 1             | 1120288221ww |2020-02-27 13:50:51 |
| ------------- |---------------| ------------ | ------------------ |

現在在我的 Laravel 應用程序中,

我想在過去的過去7天的觀看次數最多的圖片。

我想要一列 image_views 並且這些視圖 👀 應該按瀏覽器 id 分組)。

所以這是我嘗試過的:👇👇

$image_views = DB::table('image_views')
                        ->selectRaw('count(*) as view_count')
                        ->where(function($query){
                            $query->where('image_views.image_id', 'images.id');
                            $query->whereDate('image_views.created_at', '>=',  Carbon::now()->subDays(7)->toDateTimeString() );
                        });

$image = Image::select(['images.*', DB::raw('(' . $image_views->toSql() . ') as views ')])
->limit(1)
->orderBy('views', 'desc')
->where('images.status','published')
->mergeBindings($image_views)
->get();

return $image;

所以不幸的是上面發布的☝☝代碼不起作用😩

它只返回空白結果。

順便說一下,從 2⃣0⃣1⃣9⃣ 到現在,我在 image_views 表中有很多視圖,只是我不能在這里發布所有..


有趣的是,如果我將其轉換為 SQL 並將其粘貼到 PHPMYADMIN 中,它就像一個魅力

return $image->toSql();
//->mergeBindings($image_views)
//->get();

請有人告訴我我在 Laravel 中做錯了什么!!🙌

給定imagesimage_views

在此處輸入圖片說明

在此處輸入圖片說明

$mostViewdImage = DB::table('image_views')
->join('images', 'image_views.image_id', '=', 'images.id')
->select('browser_id', DB::raw('count(image_id) as occurrence'), 'images.*')
->where('image_views.created_at', '>=', Carbon::now()->subDays(7)->toDateTimeString())
->groupBy('image_id', 'browser_id')
->orderByRaw('occurrence DESC')->first();

dump($mostViewdImage);

//Output

"select `browser_id`, count(image_id) as occurrence, `images`.* from `image_views` inner join `images` on `image_views`.`image_id` = `images`.`id` where `image_views`.`created_at` >= ? group by `image_id`, `browser_id` order by occurrence DESC limit 1" (2.02 s)

{#261 ▼
    +"browser_id": "1020288e3221"
    +"occurrence": 2
    +"id": 2
    +"name": "poor sun set"
    +"src": "1120288.jpg"
    +"status": "published"
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM