91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中Laravel關聯查詢返回錯誤id如何解決

發布時間:2022-12-07 10:03:44 來源:億速云 閱讀:108 作者:iii 欄目:編程語言

這篇文章主要介紹了PHP中Laravel關聯查詢返回錯誤id如何解決的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇PHP中Laravel關聯查詢返回錯誤id如何解決文章都會有所收獲,下面我們一起來看看吧。

在 Laravel Eloquent 中使用 join 關聯查詢,如果兩張表有名稱相同的字段,如 id,那么它的值會默認被后來的同名字段重寫,返回不是期望的結果。例如以下關聯查詢:

PHP

$priority = Priority::rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();
$priority = Priority::rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();

priorities 和 touch 這兩張表都有 id 字段,如果這樣構造查詢的話,返回的查詢結果如圖:

PHP中Laravel關聯查詢返回錯誤id如何解決

Laravel 關聯查詢返回錯誤的 id

這里 id 的值不是 priorities 表的 id 字段,而是 touch 表的 id 字段,如果打印出執行的 sql 語句:

select * from `priorities` 
right join `touch` 
on `priorities`.`touch_id` = `touch`.`id` 
where `priorities`.`type` = '1' 
order by `priorities`.`total_score` desc, `touch`.`created_at` desc
select * from `priorities` 
right join `touch` 
on `priorities`.`touch_id` = `touch`.`id` 
where `priorities`.`type` = '1' 
order by `priorities`.`total_score` desc, `touch`.`created_at` desc

查詢結果如圖:

PHP中Laravel關聯查詢返回錯誤id如何解決

使用 sql 查詢的結果實際上是對的,另外一張表重名的 id 字段被默認命名為 id1,但是 Laravel 返回的 id 的值卻不是圖中的 id 字段,而是被重名的另外一張表的字段重寫了。

解決辦法是加一個 select 方法指定字段,正確的構造查詢語句的代碼:

PHP

$priority = Priority::select(['priorities.*', 'touch.name', 'touch.add_user'])
 ->rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();
$priority = Priority::select(['priorities.*', 'touch.name', 'touch.add_user'])
 ->rightJoin('touch', 'priorities.touch_id', '=', 'touch.id')
 ->where('priorities.type', 1)
 ->orderBy('priorities.total_score', 'desc')
 ->orderBy('touch.created_at', 'desc')
 ->get();

這樣就解決了問題,那么以后就要注意了,Laravel 兩張表 join 的時候返回的字段最好要指定。

關于“PHP中Laravel關聯查詢返回錯誤id如何解決”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“PHP中Laravel關聯查詢返回錯誤id如何解決”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

个旧市| 德昌县| 灵台县| 承德市| 定安县| 通化县| 镇雄县| 汤原县| 临沭县| 九江市| 抚顺市| 卢湾区| 义乌市| 新竹县| 昌都县| 济阳县| 台前县| 高邮市| 乡宁县| 屏东市| 偃师市| 临汾市| 宁德市| 华池县| 海城市| 洪湖市| 定日县| 呼图壁县| 襄樊市| 邳州市| 沂南县| 黔江区| 囊谦县| 浦北县| 梓潼县| 雷山县| 华宁县| 江陵县| 东兰县| 闽清县| 红桥区|