
December 18th, 2003, 04:36 AM
|
|
Junior Member
|
|
Join Date: Oct 2003
Location: South Asia
Posts: 14
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
date time format function required
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
|