Code:
table1
nStylecode cLotName Delvr_Pcs
33600 A 150
I have a table like this and now I want to update my another table using table1 and I want to update the maximum record of table2 like this.
Code:
nStylecode cLotName Delvr_Pcs Color
33600 A 170 BLACK
33600 A 100 RED
33600 A 50 BLUE
The final result that I want is like this.
Code:
nStylecode cLotName Delvr_Pcs Color
33600 A [b]150[/b] BLACK
33600 A 100 RED
33600 A 50 BLUE
Thank you