Supposing we have the following records in an SQL Server table.
Date
19/5/2009 12:00:00 pm
19/5/2009 12:15:22 pm
20/5/2009 11:38:00 am
What is the SQL syntax for getting something like this one?
Date Count
19/5/2009 2
20/5/2009 1
|
Supposing we have the following records in an SQL Server table.
What is the SQL syntax for getting something like this one? Date Count |
|||||||
|
|
You need to do any grouping on a Date only version of your datefield, such as this.
I usually do this though, as it avoids conversion to varchar.
EDIT: Another way to get just the date part of a datetime
|
||||
|
|
That would depend on your database engine. For SQL Server 2008 (and future versions), you can use the
|
|||
|
|
|
Depends on your DBMS. Example for Mysql:
|
|||||
|
|
|
What RDBMS are you on? Using Sybase, your query would look like this:
|
|||
|
|
|
After Googling found this one too... SELECT CAST(FLOOR(CAST(Expr1 AS FLOAT)) AS DATEtime) AS Expr1, COUNT(*) AS Expr2 FROM MY_TABLE GROUP BY CAST(FLOOR(CAST(Expr1 AS FLOAT)) AS DATEtime) The cons?
Thank you all |
||||
|
|