Is there some way to store a Date datatype with or without the year?
or:
If no year is specified, then use a dummy year of 0001 or 1000 or whatever (0000 comes up invalid) and manage those dates in the WHERE clauses.
or
Use two columns, one for MM/DD and the other for YYYY. They'd probably have to be text and then programatically concatenate them & convert to Date datatype. That might get ugly.
Other ideas?
I'm leaning towards the dummy year.
Thanks for your help, Doug
