Hi baran121,
You can get the result with this.
select
CONVERT(DATETIME, FLOOR(CONVERT(FLOAT, sdate))))
from
ab_date_def
where
sdate between '2008-01-01' and '2008-03-30'
order by
sdate
By the way,
You need to take care the condition too when you use the datetime.
This SQL...