2019-12-31日作业
1、laravel数据库访问类DB::select、DB::update、DB::insert、DB::delete分别写几个案例
DB::select
$res=DB::select("select * from product where id>:id",['id'=>1]);
echo '<pre>';
print_r($res);
return view('product.detail',['product'=>$res]);
DB::update
$res= DB::update('update `product` set `goods_name`="iphone11" where id = 6')
DB::insert
$res= DB::insert('insert into product(`goods_name`,`area`) values("iphone12","上海")');
DB::delete
$res= DB::delete('delete from product where area="上海"');
##2、总结一下where方法、whereIn方法、update方法、delete方法等查询构造器的使用方法并写几个案例
`查询构造器`
`where方法`
```php
echo '<pre>';
$res = DB::table('product')->where('id','>',1)->where('area','浙江')->get()->toArray();
var_dump($res);
whereIn方法
$res =DB::table('product')
->select('id','area','price')
->whereIn('id',[1,3,5,6])
->get()->toArray();
update方法
$res=DB::table('article_cate')
->where('id',9)
->update(['title'=>'测试分类50']);
delete方法
$res=DB::table('article_cate')
->where('id',9)
->delete();
3、insert方法插入一条记录和多答记录的方法,并说明和insertGetId方法的异同
$res=DB::table('article_cate')
->insert(['pid'=>0,'ord'=>0,'title'=>'测试分类']);
insert方法只返回布尔型的ture或者false
insertGetId返回插入记录的id值