AliRaza
December 18th, 2003, 05:32 AM
hi,
I have a celebrity table with there date of birth field. i just want to write a query which return me the celebs who's DOB is in between next 14 days.
i have wrote this query in MySQL 4.0. then i shifted my DB from MySQL to SQL server 2000.
the query in MySQL is
SELECT name,dob
FROM celeb
WHERE date_format(dob,'%c-%e') between date_format(current_date(),'%c-%e') and date_format(DATE_ADD(current_date(), INTERVAL 7 DAY),'%c-%e')
dateformat function formats the date in month and day
you can help me by just replacing this function (date_format) with any appropriate function. or u can also suggest me any alternate query with same result
thankx in advance
I have a celebrity table with there date of birth field. i just want to write a query which return me the celebs who's DOB is in between next 14 days.
i have wrote this query in MySQL 4.0. then i shifted my DB from MySQL to SQL server 2000.
the query in MySQL is
SELECT name,dob
FROM celeb
WHERE date_format(dob,'%c-%e') between date_format(current_date(),'%c-%e') and date_format(DATE_ADD(current_date(), INTERVAL 7 DAY),'%c-%e')
dateformat function formats the date in month and day
you can help me by just replacing this function (date_format) with any appropriate function. or u can also suggest me any alternate query with same result
thankx in advance