Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Combinar SUM(), GROUP_BY() e LEFT_JOIN() retorna resultados incorretos:como corrigir?


GROUP BY agrupa os resultados , não as linhas da tabela individualmente.

Com base no seu comentário retorne apenas as linhas na tabela de tempo que não estão vinculadas a uma dessas tags :
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