recherche

Maison  >  Questions et réponses  >  le corps du texte

thinkphp一个查询语句的实现

获取catid的个数,获取当state等于2时state的个数,并且还要按照pid分组。
请问一个sql语句怎么实现上面的要求。

高洛峰高洛峰2957 Il y a quelques jours513

répondre à tous(1)je répondrai

  • 三叔

    三叔2016-11-09 13:53:08

    sql语句:

    SELECT COUNT('catid') WHERE state='2' GROUP BY 'pid';

    tp代码:

    $model->count('catid')->where('state=2')->group('pid')->select();


    répondre
    0
  • Annulerrépondre