-
多表查询查看全部
-
page(页码,每页条数.)查看全部
-
page(当前页数,总页数)查看全部
-
limit(start,length) limit(length)查看全部
-
false 只选取string内的值, true 选区除string之外的值查看全部
-
order(score desc)多个命令用,隔开查看全部
-
delete(只能传入主键)查看全部
-
update用save()查看全部
-
max()最大 min()最小 avg()平均 sum()求和 count()记数查看全部
-
where['id']=array['gt',10]; where['_string']=score>10; //混合用法查看全部
-
where['user_name']=array(array('gt',100),array('lt',3),'or')查看全部
-
where[user_name]=array{'like',array{'%xiao','ming%'};//%左匹配右匹配,查看全部
-
mvc简析查看全部
-
控制器数据库操作scope()用法: (1)在模型类中声明$_scope数组 protected $_scope = array( //用于数据库命名范围 'cheap'=>array( 'where'=>array( 'price'=>array('elt',50) ), 'order'=>'price asc' ), 'expensive'=>array( 'where'=>array( 'price'=>array('egt',60) ), 'order'=>'price desc' ) ); (2)在控制器中调用 $cats = D('cats'); $data = $cats ->scope('cheap,expensive') ->where('id >= 6') ->order('price asc') ->select(); //*******注意*******:后面调用到的sql筛选条件会将前面的覆盖,scope可以和普通连贯方法混合使用 dump($data);查看全部
-
query()请求查询 execute()update insect查看全部
举报
0/150
提交
取消