Tagged Questions
2
votes
5answers
895 views
Running totals in a SQL view
I am trying to get running totals in my View in SQL Server 2008
Here is my tables
BankAccounts
------------
AccountID (KEY)
Name
Created
Transactions
------------
TransactionID (KEY)
Description
...
0
votes
3answers
2k views
sql sub and grand total
Is there a nice consise way to get grand totals here-- this query shows sub totals for each day, but how can I get the grand total of each sub total without a sub query or another query
also is there ...
1
vote
1answer
226 views
SQL Server summary calculation for different times
I have the following example for which I'd like to calculate totals at each available time:
timestamp device value
2010-12-30 00:00 1 5
2010-12-30 00:05 1 5
2010-12-30 00:05 2 10
2010-12-30 00:13 1 ...
4
votes
3answers
2k views
SQL Server Query monthly totals
I have a query that totals up all cases that were active on 01/01/2010.
SELECT COUNT(CaseID) AS Total
FROM dbo.ClientCase
WHERE (CaseStartDate <= CONVERT(DATETIME, '2010-01-01 ...