作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取用户帖子并在帖子下方显示他们的用户名和 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/
我是一名优秀的程序员,十分优秀!