What is the best way of converting datatime field value 29/03/2005 08:58:27 to 29/03/2005.
I only want to remove Time from date and I am using Sql Server 2000.
Thanks
Arvind
Look at the cast and convert functions
I use cast(convert(varchar(10), getdate(), 101) as datetime)
sql