0
votes
1answer
42 views

Summation query changes values when joined to another table

have created the following query which produces a report on total sales. It produces the result that I expected. I am using MySQL and the query looks like: SELECT detailed_report.title AS title, ...
0
votes
2answers
194 views

How to add column totals to view

I'm constructing a SQL query for a business report (using MySQL). What I would like to do is create a table that looks like the following: Product | Quantity | Price | Total widget1 | 3 | ...
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 ...