Extracting The Date From a SQL DateTime In SQL Queries
September 30 2008 Leave a Comment
Ever wondered how to quickly and easily get the date portion of a datetime field in a SQL query? Seems like it should be easy, right? Unfortunately, it isn’t. I’ve found a lot of solutions, but this one is the most elegant I’ve seen. CONVERT(datetime, FLOOR(CONVERT(float, DateTime))) I’ve put this into a user-defined function below: [...]