K
Keith
How do I find all records for a field "Birthdate" for particular month
Lynn Trapp said:SELECT *
FROM YourTable
WHERE Month(BirthDate) = [Enter the number of a Month]
--
Lynn Trapp
Trainer/Application Developer
Keith said:How do I find all records for a field "Birthdate" for particular month
Philip Herlihy said:That does make more sense, if you want everyone born in a particular month
(regardless of year!).
Phil
.Lynn Trapp said:SELECT *
FROM YourTable
WHERE Month(BirthDate) = [Enter the number of a Month]
--
Lynn Trapp
Trainer/Application Developer
Keith said:How do I find all records for a field "Birthdate" for particular month
Philip,
I tried that, because I'm so new to this (I did a bit of dBase programming
when there WAS such a thing), I'm not getting very far.
The statement you gave (WHERE (Birthdate) = 12, e.g.) doesn't seem to work
in a query, as far as I can tell.
And I don't seem to be able to get into SQL mode, either. I get only Display
and Design modes.
I know this starts a few steps back, but I need to select, every month, a
list of employees with birth dates and hire dates, separately, occur in the
current month +1.
Thanks.
Philip Herlihy said:That does make more sense, if you want everyone born in a particular month
(regardless of year!).
Phil
.Lynn Trapp said:SELECT *
FROM YourTable
WHERE Month(BirthDate) = [Enter the number of a Month]
--
Lynn Trapp
Trainer/Application Developer
How do I find all records for a field "Birthdate" for particular month