次の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 中国語 Web サイトの他の関連記事を参照してください。