I want to insert into a table field1, field2, field3, from table_one, and I want to add onto the end of field3 from the same field-name in table_two.
Insert into table_one(field1, field2, field3)
Select field1, field2, field3
From table_one
… and then take field3 from table_two and add it onto the end of the text entered from field3 from table_one.
Is this possible, experts? Be grateful to see an example of how it can be managed, please.
Insert into table_one(field1, field2, field3)
Select field1, field2, field3
From table_one
… and then take field3 from table_two and add it onto the end of the text entered from field3 from table_one.
Is this possible, experts? Be grateful to see an example of how it can be managed, please.