码迷,mamicode.com
首页 > 其他好文 > 详细

tp5控制器增删改查

时间:2020-07-07 18:02:42      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:get   bsp   php   div   lis   多少   etl   like   nbsp   

// $data=[‘type‘=>‘专辑‘];   构造数据
    // db(‘book‘)->insert($data);  添加
    // Db::name(‘book‘)->insert($data);
    // $userId = Db::name(‘book‘)->getLastInsID();添加主键id
    // $id = db(‘bookxiang‘)->insertGetId($data);   添加id
    // $data=[
    //     [‘bookid‘=>‘21‘,‘uname‘=>‘哈哈1‘],
    //     [‘bookid‘=>‘22‘,‘uname‘=>‘哈哈2‘],
    //     [‘bookid‘=>‘22‘,‘uname‘=>‘哈哈3‘],
    // ];
    // Db::name(‘bookxiang‘)->insertAll($data);  添加多条数据
    //添加单条数据db(‘bookxiang‘)->insert($data);
    // 添加多条数据db(‘bookxiang‘)->insertAll($list);
    // Db::table(‘bookxiang‘)->where(‘id‘, 1)->update([‘name‘ => ‘thinkphp‘]); 更新数据
    // db(‘bookxiang‘)->where(‘id‘,1)->update([‘name‘ => ‘thinkphp‘]);               助手函数
    // Db::table(‘bookxiang‘)->update([‘name‘ => ‘thinkphp‘,‘id‘=>1]);   如果数据中包含主键,可以直接使用:
    // Db::table(‘bookxiang‘)->where(‘id‘,1)->setField(‘name‘, ‘thinkphp‘);  更新某个字段的值
    // db(‘bookxiang‘)->where(‘id‘,1)->setField(‘name‘,‘thinkphp‘);         助手函数
    // Db::table(‘bookxiang‘)->where(‘id‘, 1)->setInc(‘score‘); 字段加1 id后面的数多少就加多少
    // db(‘bookxiang‘)->where(‘id‘, 1)->setInc(‘score‘);                   助手函数
    //Db::table(‘bookxiang‘)->where(‘id‘, 1)->setDec(‘score‘);    字段减1 id后面的数多少就减多少
    // db(‘bookxiang‘)->where(‘id‘, 1)->setDec(‘score‘);
//    db(‘bookxiang‘)->delete(1); 删除数据
    //   $where[‘id‘]=[‘<‘,‘14‘];
    //   $where[‘jc‘]=[‘>=‘,‘2‘];                查询
    //   $list=db(‘bookxiang‘)->where($where)->select(); 
    // $where[‘id‘]=[‘between‘,‘1,14‘];
    // $where[‘uname‘]=[‘like‘,‘%周易%‘];  模糊查询
    // $list=db(‘bookxiang‘)->where($where)->select();

tp5控制器增删改查

标签:get   bsp   php   div   lis   多少   etl   like   nbsp   

原文地址:https://www.cnblogs.com/vermouthmo/p/13261873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!