다음 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로 변환하는 방법을 가르쳐주세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!