Hi everyone...I have one main table that contains main record that contains name surname and idnum... i have a another table that contains transactions of each of the record in the main table. My question is, what if i needed to correct some of the entries in the transaction table of a particular idnum?
main table
0001 Maria
0002 Mamang
0003 Makina
0004 Mandy
transaction
0001 560.00
0001 340.00
0004 120.00
0001 350.00
0003 450.00
in the transaction table i needed to correct 340.00 to 890.00 and 350 to 670.00... cosidering i have thousand of transaction in the table ... what is the best approach? and if ever ill be using update, please show me how... Thanks in advanced....
main table
0001 Maria
0002 Mamang
0003 Makina
0004 Mandy
transaction
0001 560.00
0001 340.00
0004 120.00
0001 350.00
0003 450.00
in the transaction table i needed to correct 340.00 to 890.00 and 350 to 670.00... cosidering i have thousand of transaction in the table ... what is the best approach? and if ever ill be using update, please show me how... Thanks in advanced....