假设我在表中有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的所有列,我只需要两列(姓名,姓氏)。如何只选择两列?
当前回答
use App\Table;
// ...
Table::where('id',1)->get('name','surname');
如果没有哪里
Table::all('name','surname');
其他回答
你也可以用勇气。
Model::where('id',1)->pluck('column1', 'column2');
你可以使用下面的查询:
Table('table')->select('name','surname')->where('id',1)->get();
如果您需要获取一个列,直接调用模型上的pluck是在Laravel中从所有模型中检索单个列的最有效的方法。
在拔之前调用get或all将在拔值之前将所有模型读入内存。
Users::pluck('email');
首先需要创建一个Model,表示该表,然后使用下面的Eloquent方法仅获取2个字段的数据。
Model::where('id', 1)
->pluck('name', 'surname')
->all();
你可以这样做:
Table::select('name','surname')->where('id', 1)->get();