Perheps I don't need to use MAKEDATE at all, I'll try to explain what I'm trying to do instead.
Here's an example table:
+-----------+---------+--------+
| startdate | enddate | string |
+-----------+---------+--------+
| 24-12 | 10-1 | test1 |
+-----------+---------+--------+
| 31-6 | 31-10 | test2 |
+-----------+---------+--------+
So, if the current date is between the 24:th december and the 10:th of january, any year, I want the query to select row 1 so I can echo the string containing "test1".
Since this should work irrespective of what year it is, I cant figure out how to do the date-comparison.
Thanks in advance
/ jek