How would retrieve all customer's birthdays for a given month in SQL? What about MySQL? I was thinking of using the following with SQL server.
select c.name
from cust c
where datename(m,c.birthdate) = datename(m,@suppliedDate)
order by c.name
|
|
|
|
|
don't forget the 29th February...
|
||||||||||||
|
|
|
Personally I would use DATEPART instead of DATENAME as DATENAME is open to interpretation depending on locale. |
||
|
|
|
|
I'd actually be tempted to add a birthmonth column, if you expect the list of customers to get very large. So far, the queries I've seen (including the example) will require a full table scan, as you're passing the the data column to a function and comparing that. If the table is of any size, this could take a fair amount of time since no index is going to be able to help. So, I'd add the birthmonth column (indexed) and just do (with possible MySQLisms):
Of course, it should be easy to set the birthmonth column either with a trigger or with your client code. |
||
|
|
|
|
If you're asking for all birthdays in a given month, then you should supply the month, not a date:
|
||
|
|
myDate). There are individual functions for each part though (day(), month(), year(), etc) – nickf Sep 22 '08 at 2:39