31

任何定义AS查询的方式?

我尝试了以下方法:

$data = News::order_by('news.id', 'desc')
    ->join('categories', 'news.category_id', '=', 'categories.id')
    ->left_join('users', 'news.user_id', '=', 'users.id') // ['created_by']
    ->left_join('users', 'news.modified_by', '=', 'users.id') // ['modified_by']
    ->paginate(30, array('news.title', 'categories.name as categories', 'users.name as username'));

问题是['name']from 类别将被替换为 from users。有什么方法可以让它们具有不同的名称?

拥有上面的别名...如何创建两个连接都返回的别名users.name

4

2 回答 2

87

paginate()方法的第二个参数接受要在查询中选择的表列数组。所以这部分:

paginate(30, array('news.title, category.name'));

必须是这样的:

paginate(30, array('news.title', 'category.name'));

更新 (在您更改问题后)

尝试这个:

->paginate(30, array('news.title', 'categories.name as category_name', 'users.name as user_name'));

更新 2 (再次更改问题后)

您也可以在表上使用别名:

$data = News::order_by('news.id', 'desc')
    ->join('categories', 'news.category_id', '=', 'categories.id')
    ->join('users as u1', 'news.user_id', '=', 'u1.id') // ['created_by']
    ->join('users as u2', 'news.modified_by', '=', 'u2.id') // ['modified_by']
    ->paginate(30, array('news.title', 'categories.name as categories', 'u1.name as creater_username', 'u2.name as modifier_username'));
于 2013-01-14T14:24:40.490 回答
4

对这个问题更简单明了的答案是,我一直在寻找 Eloquent 直接使用表名或列支持别名,例如:

$users = DB::table('really_long_table_name AS t')
           ->select('t.id AS uid')
           ->get();
于 2019-06-12T12:19:01.003 回答