i want try to update the value of record from table1 where the value i need is from table2
like:
table1
Item_id | Quantity
0001 | 100
0002 | 200
0003 | 300
table2
Item_id | Quantity
0002 | 100
0003 | 50
when the query run.... i want the table1 shows
Item_id | Quantity
0001 | 100
0002 | 300
0003 | 350
i tried every kind of way to do it...
but still can run it...