I am writing a query that should return aggregated hours for multiple users per day/month/year.
The table looks something like this:
+------------------------------------------+
| id | entity_id | minutes | person | date |
+------------------------------------------+
How output should look:
+----------------------------+
| year | month | day | hours |
| 2008 | 12 | 1 | 30 |
| 2008 | 12 | 2 | 40 |
| 2008 | 12 | 3 | 23 |
+----------------------------+
Instead, the hours are often a lot more due to the returned rows caused by the left join.
The problem is that I need to query this table based on the tags that are linked to the corresponding entities. When I join the two tables (tag_entity that provides the link and tags that provides the actual tag names) my SUM() no longer works since there are too many results being returned.
The query:
select
date_format(from_unixtime(date), '%Y-%m-%d') as myDate,
ROUND(SUM(time) / 60,1) as hours
from time h
left join tag_entity te on te.entity_id = h.entity_id
left join tags t on t.tag_id = te.tag_id
where (t.tag_name NOT IN ('foo', 'bar', 'baz') OR t.tag_name IS NULL)
group by
myDate
order by
hours DESC, myDate ASC
How can I fix this?
EDIT:
Here are the schemas for tag and tag_entity:
Tag:
+----------+-------------+
| Field | Type |
+----------+-------------+
| tag_id | int(11) |
| tag_name | varchar(50) |
+----------+-------------+
And tag_entity:
+-----------+---------+
| Field | Type |
+-----------+---------+
| id | int(11) |
| tag_id | int(11) |
| entity_id | int(11) |
+-----------+---------+
dateandtimeis in mytimetable. – Aron Rotteveel Mar 18 '11 at 14:58from tand doingleft join tags t- syntax error. Did you forget to put in the main table name? – Marc B Mar 18 '11 at 15:05