G
Grey King
Guest
Situation: I have in a table of records with three number fields for storing a date (year, month, day). I have a query where I want to return records between a certain dates, but how do I convert the three number fields in to a single date field so I can use a query like this
SELECT records FROM table
WHERE recorddate BETWEEN startdate AND enddate
Thanks ahead of time!
SELECT records FROM table
WHERE recorddate BETWEEN startdate AND enddate
Thanks ahead of time!