有3个不同的数据库表articles
,reviews
,posts
,它们都有以下列:'id', 'title', 'user_id', 'created_at', 'body'
。
我使用的是Laravel 5.6和yajra/laravel-datatables包,因此我需要“联合”这三个表并将其放入jQuery DataTables。
为此,我使用了Laravel的union
查询构建器方法:
$fields = [
'id',
'title',
'user_id',
'created_at',
'body'
];
$articles = DB::table('articles')->select($fields);
$reviews = DB::table('reviews')->select($fields);
$posts = DB::table('posts')->select($fields);
$union = $articles->union($reviews)->union($posts)->get();
dd($union);
...,它工作正常,结果如下:
+----+-------------+---------+------------+------+
| id | title | user_id | created_at | body |
+----+-------------+---------+------------+------+
| 1 | Some title | 1 | ... | ... |
| 1 | Lorem ipsum | 2 | ... | ... |
| 1 | Test | 1 | ... | ... |
+----+-------------+---------+------------+------+
问题是我需要知道每个记录(行)来自哪个表。 是否可以添加包含数据库表名称的自定义列(例如“源”)? (使用查询生成器)
+----+-------------+---------+------------+------+----------+
| id | title | user_id | created_at | body | source |
+----+-------------+---------+------------+------+----------+
| 1 | Some title | 1 | ... | ... | articles |
| 1 | Lorem ipsum | 2 | ... | ... | reviews |
| 1 | Test | 1 | ... | ... | posts |
+----+-------------+---------+------------+------+----------+
答案 0 :(得分:2)
将DB::raw
自定义字段添加到fields
中的select
数组中,例如:
$articles = DB::table('articles')->select(array_merge($fields, [DB::raw('"articles" as source')]));
$reviews = DB::table('reviews')->select(array_merge($fields, [DB::raw('"reviews" as source')]));
$posts = DB::table('posts')->select(array_merge($fields, [DB::raw('"posts" as source')]));
这应将source
字段添加到您的结果集中
答案 1 :(得分:1)
没有函数可以返回作为行源的表。例如,如果您有一个JOIN,它将必须返回一个列表,并且派生的表子查询等会使其更加复杂。
在UNION中执行此操作的方法是使用用于命名表的字符串常量向UNION中的每个查询添加自定义列。
SELECT 'articles' as table_name, id, title, user_id, created_at, body
FROM articles
UNION
SELECT 'reviews', id, title, user_id, created_at, body
FROM reviews
UNION
SELECT 'posts', id, title, user_id, created_at, body
FROM posts
(您只需要在第一个查询中定义列别名,它将应用于UNION返回的所有行。)
https://laravel.com/docs/5.6/queries#selects显示了选择列表中的自定义列的示例
因此,您应该能够仅在字段中定义额外的列:
$common_fields = [
'id',
'title',
'user_id',
'created_at',
'body'
];
$fields = array_merge(["articles as table_name"], $common_fields)
$articles = DB::table('articles')->select($fields);
$fields = array_merge(["reviews"], $common_fields)
$reviews = DB::table('reviews')->select($fields);
$fields = array_merge(["posts"], $common_fields)
$posts = DB::table('posts')->select($fields);
我还没有测试上述内容。