Hi:
I have 2 tables, A and B
table A have 3 columns A1, B1, C1
table B have 3 columns C1, D1, E1
select A.A1, A.B1, set B.C1 = A.C1, A.D1, A.E1. from A, B where A.A1 = C.D1.
how could I set the third column to table B instead of records from table A. I'm trying to get all the records from table A and B and the same time replace the records in memory from table A column C1 to table B column C1.
Is this possible?
I have 2 tables, A and B
table A have 3 columns A1, B1, C1
table B have 3 columns C1, D1, E1
select A.A1, A.B1, set B.C1 = A.C1, A.D1, A.E1. from A, B where A.A1 = C.D1.
how could I set the third column to table B instead of records from table A. I'm trying to get all the records from table A and B and the same time replace the records in memory from table A column C1 to table B column C1.
Is this possible?