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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Query with a MAX(Date) subquery 1

Status
Not open for further replies.

jchewsmith

Technical User
Nov 20, 2006
160
0
0
US
I am trying to update a row (Order line) in a table with a the MAX(ShipDate) of the other sales order lines in the table.

OrderLine.tbl

SO Line# Date Type Amt
123 1 7/1/15 Item 10.00
123 2 7/2/15 Item 5.00
123 3 7/3/15 Item 7.00

I want to Update the following:

123 4 7/3/15 Fee 1.00 the 7/3 being the max of all other lines in the table current for that sales order
 
SQL:
update orderstable t1
  set Amt = (select max(Amt) from orderstable t2
             where t2.SO = t1.SO)
where not exists (select 1 from orderstable t3
                  where t3.SO = t1.SO
                    and t3.Date > t1.Date)

Set Amt to the highest Amt value for that SO (first sub-query), for the rows has no later row in the table with the same SO (second sub-query.)

However, I can't see why you want this kind of logic. The risk of data inconsistency is too high. Have you considered a view instead? (It will always be up to date.)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top