假设我在表中有7列,我想只选择其中的两列,就像这样
SELECT `name`,`surname` FROM `table` WHERE `id` = '1';
在laravel雄辩模型中,它看起来是这样的
Table::where('id', 1)->get();
但我猜这个表达式将选择id = 1的所有列,我只需要两列(姓名,姓氏)。如何只选择两列?
假设我在表中有7列,我想只选择其中的两列,就像这样
SELECT `name`,`surname` FROM `table` WHERE `id` = '1';
在laravel雄辩模型中,它看起来是这样的
Table::where('id', 1)->get();
但我猜这个表达式将选择id = 1的所有列,我只需要两列(姓名,姓氏)。如何只选择两列?
当前回答
你也可以在这里使用findOrFail()方法,它很好用
如果没有捕获异常,则自动向用户发送404 HTTP响应。当使用这些方法不给出500错误时,没有必要编写显式检查来返回404响应。
ModelName::findOrFail($id, ['firstName', 'lastName']);
其他回答
同样Model::all(['id'])->toArray()它将只获取id作为数组。
为了从表中获得特定列的结果,我们必须指定列名。
使用以下代码:-
$result = DB::Table('table_name')->select('column1','column2')->where('id',1)->get();
例如:
$result = DB::Table('Student')->select('subject','class')->where('id',1)->get();
获取一列的值:
Table_Name::find($id)->column_name;
你可以用where子句来使用这个方法:
Table_Name::where('id',$id)->first()->column_name;
或者使用这个方法来绕过PhpStorm“在应用程序\模型中没有找到的方法”:
Table_Name::query()->where('id','=',$id)->first()->column_name;
在查询生成器中:
DB::table('table_names')->find($id)->column_name;
带where从句:
DB::table('table_names')->where('id',$id)->first()->column_name;
or
DB::table('table_names')->where('id',$id)->first('column_name');
最后一个方法的结果是数组
在laravel 5.3中,只有使用get()方法,你才能获得表的特定列:
YouModelName::get(['id', 'name']);
或者在laravel 5.4中,你也可以使用all()方法来获取你选择的字段:
YourModelName::all('id', 'name');
对于上面的get()或all()方法,你也可以使用where(),但两者的语法不同:
模型::所有()
YourModelName::all('id', 'name')->where('id',1);
模型:get ()
YourModelName::where('id',1)->get(['id', 'name']);
use App\Table;
// ...
Table::where('id',1)->get('name','surname');
如果没有哪里
Table::all('name','surname');