Maison >cadre php >PensezPHP >Apprenez à convertir des instructions SQL en TP5

Apprenez à convertir des instructions SQL en TP5

藏色散人
藏色散人avant
2021-11-19 16:35:501589parcourir

La colonne suivante du didacticiel thinkphp framework vous donnera une brève introduction sur la façon de convertir des instructions SQL en TP5. J'espère qu'elle sera utile aux amis dans le besoin !

Apprenez à convertir des instructions SQL en TP5

Vous apprendre à convertir des instructions SQL en TP5 ?

Description détaillée du problème :

Veuillez m'aider à convertir cette instruction SQL native en TP5 Merci ! Il s'agit de Db::('name')->Ce type d'opération en chaîne

'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';

méthode de mise en œuvre :

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()

Vous trouverez ci-joint le manuel, en savoir plus sur le manuel https://www.kancloud.cn/manual /thinkphp5 /135180

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer