博客列表 >tp数据库查询方法+2018年10月24日

tp数据库查询方法+2018年10月24日

Lee的博客
Lee的博客原创
2018年10月28日 17:53:02800浏览
  1. 数据库原生查询的实现方法
    2. 数据库闭包查询
    3. 练习课程中未演示的其它链式方法;


  2. 实例

    <?php
    namespace app\index\controller;
    use think\console\Table;
    use think\Db;
    use think\db\Query;
    
    class demo1
    {
        //数据库原生查询的实现方法
        public function list1(){
            $res = Db::query('select * from user where id=:id',['id'=>4]);
            dump($res);
        }
         //数据库闭包查询
        public function list2(){
            $res = Db::select(function ($query){
                $query->table('user')->where('id',4);
            });
            dump($res);
        }
         //练习课程中未演示的其它链式方法
        public function list(){
            $res = Db::table('user')
                ->where('id','=',4)
                ->find();
            if ($res){
                echo '<h1 style="color: rebeccapurple;">成功了</h1>';
                dump($res);
            }
        }
    
        public function update(){
            $num = Db::table('user')
                ->where('id',4)
                ->data(['salary'=>5555])
                ->update();
            if ($num){
                echo '<h2>更新成功</h2>';
                $res = Db::table('user')
                    ->field(['id'=>'编号','name'=>'姓名','salary'=>'工资'])
                    ->where('id',4)
                    ->find();
                dump($res);
            }
        }
    }

    运行实例 »

    点击 "运行实例" 按钮查看在线实例



QQ截图20181028175243.jpg

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