gpt4 book ai didi

php - 如何在 Laravel 中创建查询以获取帖子及其用户详细信息

转载 作者:行者123 更新时间:2023-11-29 01:50:38 25 4
gpt4 key购买 nike

我正在尝试获取用户帖子并在帖子下方显示他们的用户名和 ID 如何创建此类查询

这是我的帖子表

  ---------------------------------------------------------------------
| id | user_id | title | content | status | time |
| 1 | 2 | example | Something | active | 2017-07-11 13:48:26 |
| 2 | 2 | example | Something | active | 2017-07-11 13:48:26 |
| 3 | 3 | example | Something | active | 2017-07-11 13:48:26 |
| 4 | 4 | example | Something | active | 2017-07-11 13:48:26 |
| 5 | 5 | example | Something | active | 2017-07-11 13:48:26 |
---------------------------------------------------------------------

用户表

  ------------------------------------------------------------
| id | name |password | img | last_login |
| 1 | User1 | example | Something | 2017-07-11 13:48:26 |
| 2 | User2 | example | Something | 2017-07-11 13:48:26 |
| 3 | User3 | example | Something | 2017-07-11 13:48:26 |
| 4 | User4 | example | Something | 2017-07-11 13:48:26 |
| 5 | User5 | example | Something | 2017-07-11 13:48:26 |
------------------------------------------------------------

现在我想从数据库中获取所有帖子并从用户表中获取 - 名称、img、用户名等...

这是我的查询到现在为止的样子

$p1 = App\Models\Post::where('status', 'active')
->orderBy('id', 'desc')
->take(6)
->get();

最佳答案

试试这个...我只使用 JOIN 因为每个帖子都有一个用户....你可以引用这个链接https://laravel.com/docs/5.4/queries#joins

DB::table('post')
->select('post.*','user.id','user.name')
->join('user','user.id','=','post.user_id')
->get();

尝试这个类别只是你需要选择的只是将它添加到选择子句中......

DB::table('post')
->select('post.*','user.id','user.name', 'category.*')
->join('user','user.id','=','post.user_id')
->join('category','post.id','=','category.post_id')
->get();

关于php - 如何在 Laravel 中创建查询以获取帖子及其用户详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45116043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com