DQL:查询表中的记录 1.语法 select 字段列表 from 表名列表 where 条件列表 group by 分组字段 having 分组之后的条件 order by 排序 limit 分页限定 基础查询: 1.多个字段的查询 select 字段名1,字段名2... from 表名 注意: 如果查询所有字段,则可以使用"*"来替换字段列表 2.去除重复 distinct 3.计算列 一般可以使用四则运算计算一些列的值.(一般指挥进行数据型的计算) ifnunn(表达式1,表达式
public function wordOne(){ return $this->hasOne('TeachWord','id','w_id')->field('id,pid,title'); } 查询:以pid为条件查询 $sql = new TeachNews(); $sql= $sql->hasWhere('wordOne',['pid'=>$search['wordList']]);
练习-------租房子-----增删改查,多条件 一 .题目要求: 二 .做法: [1]建立数据库 [2]封装类文件------DBDA.class.php <?php class DBDA { public $fuwuqi="localhost"; //服务器地址 public $yonghuming="root";//用户名 public $mima="";//密码 public $dbconnect;//连接对象 //操作数据库的方