为了账号安全,请及时绑定邮箱和手机立即绑定

pluck

只返回了一个字符public  function  query(){
   //查询构造器查询数据  get(),lists(), first(), select(), where(),chunk(), pluck(),
   //get() 获取表的所以数据
  //$students= DB::table('student')->get();

   //first() 获取表的一条数据 默认正序
   //$students= DB::table('student')->orderby('id','desc')->first()
   //;
   //where() 一个条件
  // $students= DB::table('student')->where('id','>=',15)->get();

   //where() 多个个条件
   //$students= DB::table('student')->whereRaw('id >=? and age>=?',[13,20])->get();

   //pluck()返回指定字段组成数组
   $students= DB::table('student')->pluck('name');
   dd($students);
}串

正在回答

1 回答

啥问题?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信