I have a simple query:

SELECT id,year,month,day,cat_id FROM events
LEFT JOIN calendar_cat ON
events.cat=calendar_cat.cat_id
WHERE year>=YEAR(CURDATE())
AND month>=MONTH(CURDATE())
AND day>=DAYOFMONTH(CURDATE())
AND cat_id='2' OR cat_id='5'
AND approved='1'
ORDER BY year,month,day ASC

Results:

+----+------+-------+-----+--------+
| id | year | month | day | cat_id |
+----+------+-------+-----+--------+
| 25 | 2003 |    12 |   7 |      5 |
| 44 | 2004 |     2 |  15 |      2 |
| 53 | 2004 |     3 |  28 |      5 |
| 45 | 2004 |     6 |   6 |      2 |
+----+------+-------+-----+--------+
 
Can anyone point out where I've screwed up the query??
I don't think it should be giving me the first entry.
It is a trivial problem, and I can filter the results
further with php, but I'd like to do it right, and am
trying to learn SQL.



JC

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to