假设我在表中有7列,我想只选择其中的两列,就像这样

SELECT `name`,`surname` FROM `table` WHERE `id` = '1';

在laravel雄辩模型中,它看起来是这样的

Table::where('id', 1)->get();

但我猜这个表达式将选择id = 1的所有列,我只需要两列(姓名,姓氏)。如何只选择两列?


当前回答

你也可以用勇气。

Model::where('id',1)->pluck('column1', 'column2');

其他回答

你可以得到它

`PostModel::where('post_status', 'publish')->get(['title', 'content', 'slug', 'image_url']`)

link

Table::where('id', 1)->get(['name','surname']);

为了从表中获得特定列的结果,我们必须指定列名。

使用以下代码:-

   $result = DB::Table('table_name')->select('column1','column2')->where('id',1)->get();  

例如:

$result = DB::Table('Student')->select('subject','class')->where('id',1)->get();  

获取多列(返回集合):

Model::select('name','surname')->where('id', 1)->get();

如果你想把列作为数组使用下面的代码:

Model::select('name','surname')->where('id', 1)->get()->toArray();

如果你想获得一个单列,试试这个:

Model::where('id', 1)->first(['column_name'])->column_name;

同样Model::all(['id'])->toArray()它将只获取id作为数组。