jchewsmith
Technical User
I am trying to update a field in my table from a view based on a MAX(Date)
Table: dbrderLine
Fields LineNo, OrderNo, and ShipDate (there will be multiple row with the same OrderNo and each row needs to update based on the link to the OrderNo in dbo.MaxDate
View: dbo.MaxDate
Fields OrderNo and ShipDate
I need to update all shipdate fields in the OrderLine table where the OrderNo = the OrderNo in MaxDate
Table: dbrderLine
Fields LineNo, OrderNo, and ShipDate (there will be multiple row with the same OrderNo and each row needs to update based on the link to the OrderNo in dbo.MaxDate
View: dbo.MaxDate
Fields OrderNo and ShipDate
I need to update all shipdate fields in the OrderLine table where the OrderNo = the OrderNo in MaxDate