Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso contare il numero di post?

Hai provato ad aggiungere l'ID del post alla query?

Ho aggiunto count(r.post_id) as post_num nel tuo select dichiarazione e ha dato i risultati attesi .

Per rimuovere i duplicati, usa distinct . Vuoi il conteggio rispetto alla tabella dei tag? Prova

  1. COUNT(distinct pt.post_id) AS post_count; o
  2. COUNT(distinct r.post_id) AS post_count