Jump to content

Can someone tell me


AV1611

Recommended Posts

I hope this is giving me the sum() of all records of the same Job AND Dept.

 

I am getting multiple rows (one per Dept) with a DEPT_HOURS for each of those rows...

 

I'm doing this correctly, right?

 

Select distinct
labor.Dept AS DEPT,
labor.Job AS MS,
countsheet.PART_NUMBER,
Sum(labor.Total) AS DEPT_HOURS,
countsheet.TOTAL AS TOTAL_QTY,
countsheet.DUE AS UNCOMP_QTY,
countsheet.NET AS COMP_QTY
From
labor,countsheet
Where
labor.Job = countsheet.MS
Group By
labor.Job,
labor.Dept
Order By
countsheet.MS Asc
;

Link to comment
https://forums.phpfreaks.com/topic/2936-can-someone-tell-me/
Share on other sites

Try adding the remaining selected attributes to your group by clause. So it would go something like this.

 

Select distinct
labor.Dept AS DEPT,
labor.Job AS MS,
countsheet.PART_NUMBER,
Sum(labor.Total) AS DEPT_HOURS,
countsheet.TOTAL AS TOTAL_QTY,
countsheet.DUE AS UNCOMP_QTY,
countsheet.NET AS COMP_QTY
From
labor,countsheet
Where
labor.Job = countsheet.MS
Group By
labor.Job,
labor.Dept,
countsheet.PART_NUMBER,
countsheet.TOTAL ,
countsheet.DUE ,
countsheet.NET 
Order By
countsheet.MS Asc
;

 

Oh, and I'm not seeing where countsheet.MS is being selected. Using an attrute in an Order By cluase that hasn't been selected may cause unexpected results.

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/2936-can-someone-tell-me/#findComment-9895
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.