View Single Post

   
  #3 (permalink)  
Old 02-29-2008, 06:41 PM
Erland Sommarskog
 
Posts: n/a
Default Re: looking to collect distinct date part out of datetime field

sdowney717@msn.com (sdowney717@msn.com) writes:
> SQLQuery = "SELECT distinct CONVERT(char,circdate,1) from circdata"
>
> I think I solved it
> any one see a problem with this?
> how does the '1' parameter affect the output as I know there are
> several choices


1 is a format parameter that controls how the datetime value is formatted.
You can read about these in the topic CAST and CONVERT in Books Online.


--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Reply With Quote