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

La combinazione di SUM(), GROUP_BY() e LEFT_JOIN() restituisce risultati errati:come risolvere?

GROUP BY raggruppa i risultati , non le righe della tabella singolarmente.

In base al tuo commento restituisci solo le righe della tabella oraria che non sono collegate a uno di questi tag :

SELECT 
    date_format(from_unixtime(date), '%Y-%m-%d') as myDate,
    ROUND(SUM(time) / 60,1) as hours
FROM `time` h
  LEFT JOIN (
    SELECT DISTINCT te.entity_id
    FROM tag_entity te
      LEFT JOIN tags t on t.tag_id = te.tag_id
    WHERE te.entity_id IS NOT NULL AND t.tag_name IN ('foo', 'bar', 'baz')
  ) g ON h.entity_id = g.entity_id
WHERE g.entity_id IS NULL
group by
    myDate

order by
    hours DESC, myDate ASC