Hi,
One possible solution could be to convert date to varchar and then use group by.
Example:
select convert(varchar(10),date_created,101) from table_name group by convert(varchar(10),date_created,101)
This will give u data group by date, excluding time.
Om Prakash
|