in a datetime field, i need only date and not time. for eg: 12/06/2006 12:12:00
i need the result as 12/12/2006. how should i write query to get this resultant?
i need the result as 12/12/2006. how should i write query to get this resultant?
SELECT CONVERT(VARCHAR(10),GETDATE(),101)
Comment