多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 整表查询 ~~~ $query = $this->db->get('mytables'); ~~~ #### 查询指定的记录 ~~~ $query = $this->db->get('mytables',10,20 ); ~~~ > 查找出从第20条记录开始的10条记录 ### 查询结果的处理 ~~~ $query = $this->db->get('mytables'); foreach($query->result_array() as $row ) { echo $row['name']; } ~~~ ### 条件查询 ~~~ $query = $this->db->get_where('mytables', array('id' => 1)); ~~~ ### 设置返回的字段 ~~~ $this->db->select('name', 'title'); ~~~ ### 字段的分组与统计 ~~~ $this->db->select_max('age', 'number_max'); ~~~ > 参数一表示数据表里面的字段 参数二表示生成的字段名称