suchen

Heim  >  Fragen und Antworten  >  Hauptteil

mysql - Welcher Master kann diesen SQL-Satz mit MongoDB schreiben?

SELECT COUNT(DISTINCT(ccc)) AS ccc,COUNT(DISTINCT(bbb)) AS bbb FROM total WHERE user_id='$user_id' AND ADDDATE BETWEEN '$time[starttime]' AND '$endtime' GROUP BY aaa ORDER BY aaa DESC

Die SQL-Anweisung ist wie oben. Kann mir jemand einen Rat geben?

phpcn_u1582phpcn_u15822729 Tage vor1215

Antworte allen(1)Ich werde antworten

  • typecho

    typecho2017-06-30 09:56:02

    考虑使用MongoDB的aggregation:

    1、COUNT(DISTINCT(ccc)) AS ccc,COUNT(DISTINCT(bbb)) AS bbb

    $group+$sum

    2、user_id='$user_id' AND ADDDATE BETWEEN '$time[starttime]' AND '$endtime'

    $match

    供参考。

    Love MongoDB!Have fun!

    Antwort
    0
  • StornierenAntwort