Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Condition the "HAVING SUM.."

Status
Not open for further replies.

snufse1

Programmer
Nov 14, 2008
66
US
Have following query below. I only need to execute the line "HAVING SUM(dbo.EquipmentLaborEvent.Hours) < @Hours)" if @Hours being passed in is not zero. How would I do that? Thank you.


@Hours INT
.
..
...
SELECT dbo.Equipment.CompanyEquipmentID,SUM(dbo.EquipmentLaborEvent.Hours) AS hours
FROM dbo.Equipment
inner join dbo.EquipmentLaborEvent on dbo.EquipmentLaborEvent.EquipmentGuid = dbo.Equipment.EquipmentGuid
inner join dbo.Event on dbo.Event.EventGuid = dbo.EquipmentLaborEvent.EventGuid
inner join dbo.Batch on dbo.Batch.BatchGuid = dbo.Event.BatchGuid
WHERE (@DateFrom IS Null or dbo.Batch.Reportdate >= @DateFrom) and
(@DateTo IS Null or dbo.Batch.ReportDate <= @DateTo)
GROUP BY dbo.Equipment.CompanyEquipmentID
HAVING SUM(dbo.EquipmentLaborEvent.Hours) < @Hours)
 
Try this:

Code:
HAVING (@Hours < 0 or SUM(dbo.EquipmentLaborEvent.Hours) < @Hours))


-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Did not work....

If hours selected by user is nothing, then query does not return any rows when it should. Should I test on Null instead of Zero?


(SELECT dbo.Equipment.CompanyEquipmentID,SUM(dbo.EquipmentLaborEvent.Hours) AS hours
FROM dbo.Equipment
inner join dbo.EquipmentLaborEvent on dbo.EquipmentLaborEvent.EquipmentGuid = dbo.Equipment.EquipmentGuid
inner join dbo.Event on dbo.Event.EventGuid = dbo.EquipmentLaborEvent.EventGuid
inner join dbo.Batch on dbo.Batch.BatchGuid = dbo.Event.BatchGuid
WHERE (@DateFrom IS Null or dbo.Batch.Reportdate >= @DateFrom) and
(@DateTo IS Null or dbo.Batch.ReportDate <= @DateTo)
GROUP BY dbo.Equipment.CompanyEquipmentID
--HAVING SUM(dbo.EquipmentLaborEvent.Hours) < @Hours)m
HAVING (@Hours < 0 or SUM(dbo.EquipmentLaborEvent.Hours) < @Hours))m
 
I tried this and seems to work:

HAVING (@Hours IS Null or SUM(dbo.EquipmentLaborEvent.Hours) < @Hours))m
 
You can try

having (ISNULL(@Hours,0) <= 0 or ...)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top