欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

tp框架大神来看看

程序员文章站 2022-06-05 12:40:03
...
 $list=$Model->query("select * from activity,apply where apply.ac_id=activity.ac_id and apply.unionid='{$unionid}' order by ap_id desc");

这段sql语句如何用tp中的提供的 $User->where('status=1')->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();

类似这种的写法 我的应该怎么写 谢谢大神

回复内容:

 $list=$Model->query("select * from activity,apply where apply.ac_id=activity.ac_id and apply.unionid='{$unionid}' order by ap_id desc");

这段sql语句如何用tp中的提供的 $User->where('status=1')->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();

类似这种的写法 我的应该怎么写 谢谢大神

一楼兄弟回答的就可以貌似把分页给漏了,你自己在一楼兄弟回答的基础上加上limit($Page->firstRow, $Page->listRows)就可以了。试试吧!希望对你有帮助

$list=M("activity ac")->join("left join apply ap on ac.ac_id=ap.ac_id")->where("apply.unionid=".$unionid)->order("ap_id desc")->select();
相关标签: php