I am struggling to find the correct syntax for the max function. I want it to return the eqmt, endtime and shiftindex, but only the row with the highest shiftindex for each combination.
So if I have
eqmt endtime shiftindex
1 2 1
1 7 2
I want it to return
1 7 2
Here is the select statement
select
(tbl1.eqmt)--, tbl2.unit, tbl2.eqmttype
-- , max(tbl1.shiftindex)
,tbl1.endtime--, tbl1.shiftindex
--into #pmdowntime
from tbl1 tbl1, tbl2 tbl2
where tbl1.shiftindex = tbl2.shiftindex
and tbl1.eqmt = tbl2.eqmtid
--and (tbl1.shiftindex between @startd and @endd)
--and tbl1.shiftindex = (SELECT max (shiftindex)as sh,eqmt from tbl1
--WHERE status = 1 and reason = 3501
--group by eqmt)
--and (tbl1.status = 1) and (tbl1.reason = 3501)
group by tbl1.eqmt, tbl2.unit, tbl2.eqmttype,
tbl1.shiftindex,
tbl1.endtime
order by tbl1.eqmt asc
Neither of the methods I have tried have given me the answer I am looking for.
Thanks
So if I have
eqmt endtime shiftindex
1 2 1
1 7 2
I want it to return
1 7 2
Here is the select statement
select
(tbl1.eqmt)--, tbl2.unit, tbl2.eqmttype
-- , max(tbl1.shiftindex)
,tbl1.endtime--, tbl1.shiftindex
--into #pmdowntime
from tbl1 tbl1, tbl2 tbl2
where tbl1.shiftindex = tbl2.shiftindex
and tbl1.eqmt = tbl2.eqmtid
--and (tbl1.shiftindex between @startd and @endd)
--and tbl1.shiftindex = (SELECT max (shiftindex)as sh,eqmt from tbl1
--WHERE status = 1 and reason = 3501
--group by eqmt)
--and (tbl1.status = 1) and (tbl1.reason = 3501)
group by tbl1.eqmt, tbl2.unit, tbl2.eqmttype,
tbl1.shiftindex,
tbl1.endtime
order by tbl1.eqmt asc
Neither of the methods I have tried have given me the answer I am looking for.
Thanks