I want to list all sales, and group the sum by day.
Sales (saleID INT, amount INT, created DATETIME)
Update I am using SQL Server 2005
|
|
I want to list all sales, and group the sum by day. Sales (saleID INT, amount INT, created DATETIME) Update I am using SQL Server 2005
|
||||
|
|
|
if you're using SQL Server, dateadd(DAY,0, datediff(day,0, created) will return the day created for example, if the sale created on '2009-11-02 06:12:55.000', dateadd(DAY,0, datediff(day,0, created) return '2009-11-02 00:00:00.000'
|
|||
|
|
|
actually this depends on what DBMS you are using but in regular SQL so:
the magix number |
||
|
|
|
For SQL Server:
or faster (from Q8-Coder):
For MySQL:
or better (from Jon Bright):
For Oracle:
or faster (from IronGoofy):
For Informix (by Jonathan Leffler):
|
|||
|
|
|
|
If you're using SQL Server, you could add three calculated fields to your table:
and now you could easily group by, order by etc. by day, month or year of the sale:
Those calculated fields will always be kept up to date (when your "Created" date changes), they're part of your table, they can be used just like regular fields, and can even be indexed (if they're "PERSISTED") - great feature that's totally underused, IMHO. Marc |
||||||||
|
|
|
For oracle you can
as this truncates the created datetime to the previous midnight. Another option is to
which achieves the same result, but may be slower as it requires a type conversion. |
||
|
|
If you're using MySQL:
If you're using MS SQL 2008:
|
||||||||||
|