I am still having this problem, no one seems to be able to figure this out. let me know what you think about it
thread222-1230395
David Kuhn
------------------
thread222-1230395
David Kuhn
------------------
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Max(ProcessNum) AS MaxProcessNum, JobNum
FROM FurnaceUsage
WHERE JobNum [red]IN[/red] (Select JobNum
FROM FurnaceUsage
WHERE Status='INPROCESS'
AND FurnaceNum='x'
AND Location='y'
AND TimeOut=##)
GROUP BY JobNum
ORDER BY JobNum
Select Count(*) As Occurrences,
Status, FurnaceNum, Location, TimeOut,
MIN(JobNum) As MinJob, MAX(JobNum) As MaxJob
FROM FurnaceUsage
Group By Status, FurnaceNum, Location, TimeOut
Having Count(*) > 1
SELECT Max(ProcessNum) AS MaxProcessNum, JobNum
FROM FurnaceUsage
WHERE Status='INPROCESS'
AND FurnaceNum='x'
AND Location='y'
AND TimeOut=##
GROUP BY JobNum
ORDER BY JobNum