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
188 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 | ...
1
vote
2answers
505 views

PHP + MySQL: Finding total of values by recursing through mySQL parent children groups

I have a mySQL table like this: Folders [id] [name] [parent_id] 1 fruits 0 2 orange 1 3 lemon 2 4 steak 0 Projects [id] [name] [parent_id] [hours] 1 project1 1 ...