The field DATE in the database has the following format:
2012-11-12 00:00:00
I would like to remove the time from the date and return the d
You may try the following:
SELECT CONVERT(VARCHAR(10),yourdate,101);
or this:
select cast(floor(cast(urdate as float)) as datetime);