ThinkPHP5联合(关联)查询、多条件查询与聚合查询实例详解
程序员文章站
2022-03-21 11:07:13
本文实例讲述了thinkphp5联合(关联)查询、多条件查询与聚合查询。分享给大家供大家参考,具体如下:
一、联合(关联)查询
1. 项目表
drop tab...
本文实例讲述了thinkphp5联合(关联)查询、多条件查询与聚合查询。分享给大家供大家参考,具体如下:
一、联合(关联)查询
1. 项目表
drop table if exists `darling_project`; create table `darling_project` ( `project_id` int(32) not null auto_increment, `project_name` varchar(20) not null, `create_time` int(32) not null, primary key (`project_id`), unique key `project_id` (`project_id`), unique key `project_name` (`project_name`) );
2. 版本号表
drop table if exists `darling_version`; create table `darling_version` ( `version_id` int(32) not null auto_increment, `project_id` int(32) not null, `version_name` varchar(128) not null, `create_time` int(32) not null, primary key (version_id), unique key `version_id` (`version_id`) );
3. 联合查询
$where=array( "version_id"=>$_post['version_id'] ); $project_version = model('project')->join("darling_version","darling_version.project_id = darling_project.project_id")->where($where)->find();
二、多条件查询
方法一:
把查询条件放到数组里作为where函数参数,但是如果有大于小于这样的条件参数,数组里是无法赋值的。
例1:
$where=array( "version_name"=>$version_name, "project_name"=>$project_name ); $userdata=$this->where($where)->find();
例2:
$where=array( "version_name"=>$version_name, "project_name"=>$project_name ); $userdata=$this->where($where)->select();
例3:
$where=array( "version_id"=>$version_id ); $version_name = model("version")->where($where)->field("version_name")->find();
方法二:
把多个sql查询语句作为where 参数,这样就支持大于小于这样的条件了。
$package = model('admin/package') ->where("project_id=".$project_version['project_id']." and version_id=".$project_version['version_id']." and status>1") ->order('create_time desc') ->find();
方法三:
把sql查询语句放到多个where函数里
$package = model('admin/package') ->where("project_id=".$project_version['project_id']) ->where("version_id=".$project_version['version_id']) ->where("status>1") ->order('create_time desc') ->find();
三、聚合max 函数
1. 如下可以返还最新插入的升级包,但是只会返还create_time 这个字段,不能返回整条记录的字段。
$package = model('admin/package') ->where("project_id=".$project_version['project_id']) ->where("version_id=".$project_version['version_id']) ->where("status>1")->max(create_time)
2. 所以可以使用下面这个达到找出最新插入的记录并返还整条记录字段,先做order 排序,再find第一个记录。
$package = model('admin/package') ->where("project_id=".$project_version['project_id']) ->where("version_id=".$project_version['version_id']) ->where("status>1") ->order('create_time desc') ->find();
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
上一篇: 递归算法(附华为笔试题一个)