找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索本站精品资源

首页 教程频道 查看内容

教你如何把SQL语句转成TP5

作者:模板之家 2021-11-21 13:47 91人关注

?下面thinkphp框架教程栏目将给大家简单介绍下如何把SQL语句转成TP5,希望对需要的朋友有所帮助!

下面thinkphp框架教程栏目将给大家简单介绍下如何把SQL语句转成TP5,希望对需要的朋友有所帮助!

教你如何把SQL语句转成TP5?

具体问题描述:

求大神帮我把这段原生SQL语句转成TP5的谢谢!就是Db::('name')->这种链式操作的

'select a.id, a.title,a.create_time,a.is_solve,count(b.qid) as answer_count from fa_question a,fa_answer b where a.id=b.qid and a.is_solve=0 group by b.qid order by answer_count DESC LIMIT 6';

实现方法:

Db::table(['fa_question '=>'a','think_role'=>'b'])
    ->field('a.id, a.title, a.create_time, a.is_solve, count(b.qid) as answer_count)
    ->where(' a.id=b.qid and a.is_solve=0')
    ->group('b.qid')
    ->order('answer_count desc')
    ->limit(6)
    ->select()

附上手册,多看看手册https://www.kancloud.cn/manual/thinkphp5/135180

以上就是教你如何把SQL语句转成TP5的详细内容,更多请关注模板之家(www.mb5.com.cn)其它相关文章!


路过

雷人

握手

鲜花

鸡蛋
来自: 网络收集

全部回复(0)