ci多表查询,跳转,访问方式

Posted maoriaty

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ci多表查询,跳转,访问方式相关的知识,希望对你有一定的参考价值。

多表查询:

$data[upvideos] = $this->db->from(upload_video)->join(vcat, vcat.catid = upload_video.catid)->order_by(createtime, DESC)->get()->result_array();

跳转:

redirect(/uploadvideo/index, refresh);

访问方式:

define(IS_POST, strtolower($_SERVER["REQUEST_METHOD"]) == post);
define(IS_GET, strtolower($_SERVER["REQUEST_METHOD"]) == get);

 

以上是关于ci多表查询,跳转,访问方式的主要内容,如果未能解决你的问题,请参考以下文章

CI 框架多表关联查询

Django表关联对象及多表查询

Hibernate的HQL多表查询

mybatis-基于xml的多表查询

python flask(多对多表查询)

springboot在实际开发中如何实现多表查询?