博客列表 >laravel数据库访问类DB

laravel数据库访问类DB

emagic
emagic原创
2020年01月12日 13:30:15756浏览

2019-12-31日作业

1、laravel数据库访问类DB::select、DB::update、DB::insert、DB::delete分别写几个案例

DB::select

  1. $res=DB::select("select * from product where id>:id",['id'=>1]);
  2. echo '<pre>';
  3. print_r($res);
  4. return view('product.detail',['product'=>$res]);

DB::update

  1. $res= DB::update('update `product` set `goods_name`="iphone11" where id = 6')

DB::insert

  1. $res= DB::insert('insert into product(`goods_name`,`area`) values("iphone12","上海")');

DB::delete

  1. $res= DB::delete('delete from product where area="上海"');
  2. ##2、总结一下where方法、whereIn方法、update方法、delete方法等查询构造器的使用方法并写几个案例
  3. `查询构造器`
  4. `where方法`
  5. ```php
  6. echo '<pre>';
  7. $res = DB::table('product')->where('id','>',1)->where('area','浙江')->get()->toArray();
  8. var_dump($res);

whereIn方法

  1. $res =DB::table('product')
  2. ->select('id','area','price')
  3. ->whereIn('id',[1,3,5,6])
  4. ->get()->toArray();

update方法

  1. $res=DB::table('article_cate')
  2. ->where('id',9)
  3. ->update(['title'=>'测试分类50']);

delete方法

  1. $res=DB::table('article_cate')
  2. ->where('id',9)
  3. ->delete();

3、insert方法插入一条记录和多答记录的方法,并说明和insertGetId方法的异同

  1. $res=DB::table('article_cate')
  2. ->insert(['pid'=>0,'ord'=>0,'title'=>'测试分类']);

insert方法只返回布尔型的ture或者false
insertGetId返回插入记录的id值

4、作业写到博客上

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议