数据库结构
使用者
id | name
---+---------
1 | OP
2 | noob
项目
id | name | user_id
---+------+--------
1 | car | 1
2 | bus | 2
3 | box | 1
注释
id | user_id | item_id | comment
---+---------+---------+---------------
1 | 1 | 3 | this is a box.
应用程式
app / routes.php
View::share('top_comments', User::join('comments', 'users.id', '=', 'comments.user_id')
->take(3)
->get()
);
app / views / test.php
@foreach ($top_comments as $comment)
username: {{ $comment->name }}<br />
comment: {{ $comment->comment }}<br />
item id: {{ $comment->item_id }}
@endforeach
电流输出
username: OP
comment: this is a box
item id: 3
期望的输出
username: OP
comment: this is a box
item id: 3
item name: box
我希望能够调整我的
top_comments
查询以包括items.name
。当前{{ $comment->name }}
返回用户名。我认为使用相同的字段名称会引起冲突...建议? 最佳答案
您可以使用此:
User::join('comments', 'users.id', '=', 'comments.user_id')
->join('items', 'users.id', '=', 'items.user_id')
->get(array('users.*', 'comments.*', 'items.user_id', 'items.name as itemname'));
在
view
中:@foreach ($top_comments as $comment)
...
item name: {{ $comment->itemname }}
@endforeach
关于php - 表在Laravel中联接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23699793/