I have a couple of questions in regards to dates in SQL Server.
How do I separate a
datetimevalue "2011-08-10 14:56:17.267" into date and timestamp in two separate columns. Eg. Date "2011-08-10" and timestamp "14:56:17"I want remove the timestamp from
datetimevalue into "2011-08-10" and still be able to order the data by date (therefore not converted tovarchar). Also is there away to change the date value as '10 Aug 2011' and still can sort (not alphabetically but in real date order).
Thank you, HL