evergreean43
Technical User
I have a table (called first) where I would like to take another table (called second) and add all of the records to table first.
My attempt doesnt work:
Here is an example of what I want to do:
table first
table second
table first after adding table second records
My attempt doesnt work:
Code:
copy from table second to table first;
Here is an example of what I want to do:
table first
Code:
id name
1 Jones
2 Richards
3 Carson
table second
Code:
id name
4 Baker
5 Johnson
6 Hart
7 Barnes
table first after adding table second records
Code:
id name
1 Jones
2 Richards
3 Carson
4 Baker
5 Johnson
6 Hart
7 Barnes