User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the MS SQL section within the Web Development category of DaniWeb, a massive community of 401,605 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,743 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.

select date/time issue

Join Date: Jul 2005
Location: Downingtown
Posts: 57
Reputation: hinde is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 3
hinde hinde is offline Offline
Junior Poster in Training

Re: select date/time issue

  #2  
May 7th, 2008
Here is the way I deprecate a standard datetime (5/7/2008 23:28) to a smalldate (5/7/2008) in my sql statements:

Cast(Floor(Cast(myDateTimeField as float)) as datetime)

This first converts the datetime field myDateTimeField to a float. The float is an accurate representation of time. I beleive that the computation is based on how many days its been since some date in the past. For instance today it is 39573 days past this past date. If the number returned was 39573.25 I would know that the time value is 6am on the same date. By flooring what the inner cast returns you are chopping off the time from the datetime field, then you cast it back to a datetime in order for it to be a date again. Only this time its 5/7/2008 00:00:00. This is the best way I know of to remove time from a datetime when performing date arithmetic / applying date logic.

Hope this helps.
Reply With Quote  
All times are GMT -4. The time now is 5:02 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC