如何在 Laravel Eloquent 查询(或使用查询生成器)中为表添加别名?

How to alias a table in Laravel Eloquent queries (or using Query Builder)?(如何在 Laravel Eloquent 查询(或使用查询生成器)中为表添加别名?)
本文介绍了如何在 Laravel Eloquent 查询(或使用查询生成器)中为表添加别名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

假设我们正在使用 Laravel 的查询构建器:

$users = DB::table('really_long_table_name')-> 选择('really_long_table_name.id')->get();

我正在寻找与此 SQL 等效的语句:

really_long_table_name AS short_name

当我必须输入大量选择和 wheres(或者通常我在选择的列别名中也包含别名,并且它在结果数组中使用)时,这将特别有用.如果没有任何表别名,我就需要打更多的字,而且一切都变得不那么可读了.在 laravel 文档中找不到答案,有什么想法吗?

解决方案

Laravel 支持使用 AS 为表和列设置别名.试试

$users = DB::table('really_long_table_name AS t')->select('t.id AS uid')->get();

让我们用一个很棒的 tinker 工具来看看它的作用

<前>$ php 工匠修补匠[1] > Schema::create('really_long_table_name', function($table) {$table->increments('id');});//空值[2] > DB::table('really_long_table_name')->insert(['id' => null]);//真的[3] > DB::table('really_long_table_name AS t')->select('t.id AS uid')->get();//大批(//0 => object(stdClass)(//'uid' => '1'//)//)

Lets say we are using Laravel's query builder:

$users = DB::table('really_long_table_name')
           ->select('really_long_table_name.id')
           ->get();

I'm looking for an equivalent to this SQL:

really_long_table_name AS short_name

This would be especially helpful when I have to type a lot of selects and wheres (or typically I include the alias in the column alias of the select as well, and it get's used in the result array). Without any table aliases there is a lot more typing for me and everything becomes a lot less readable. Can't find the answer in the laravel docs, any ideas?

解决方案

Laravel supports aliases on tables and columns with AS. Try

$users = DB::table('really_long_table_name AS t')
           ->select('t.id AS uid')
           ->get();

Let's see it in action with an awesome tinker tool

$ php artisan tinker
[1] > Schema::create('really_long_table_name', function($table) {$table->increments('id');});
// NULL
[2] > DB::table('really_long_table_name')->insert(['id' => null]);
// true
[3] > DB::table('really_long_table_name AS t')->select('t.id AS uid')->get();
// array(
//   0 => object(stdClass)(
//     'uid' => '1'
//   )
// )

这篇关于如何在 Laravel Eloquent 查询(或使用查询生成器)中为表添加别名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Warning: mysqli_query() expects at least 2 parameters, 1 given. What?(警告:mysqli_query() 需要至少 2 个参数,1 个给定.什么?)
INSERT query produces quot;Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean givenquot;(INSERT 查询产生“警告:mysqli_num_rows() 期望参数 1 为 mysqli_result,给出布尔值;)
prepared statements - are they necessary(准备好的陈述 - 它们是否必要)
Do I need to escape my variables if I use MySQLi prepared statements?(如果我使用 MySQLi 准备好的语句,是否需要转义我的变量?)
Properly Escaping with MySQLI | query over prepared statements(使用 MySQLI 正确转义 |查询准备好的语句)
Is it possible to use mysqli_fetch_object with a prepared statement(是否可以将 mysqli_fetch_object 与准备好的语句一起使用)