Tagged Questions
2
votes
5answers
899 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 ...
0
votes
2answers
493 views
SQL with COUNTs and SUMs with cross-UNION GROUP BY
SQL guru needed, this is killing my neurons. I have a db structure (simplified) like this:
DESC documents;
id INT PK
bill_id INT FK
dtype INT -- 1=receipts, 0=invoices
...