G
Guest
I have 2 files each with the same fields that I'm just trying to append to
each other. For example:
File1
id age
1 10
2 20
3 30
File2
id age
4 40
5 50
6 60
And I want:
id age
1 10
2 20
3 30
4 40
5 50
6 60
Can I do this in SQL?
each other. For example:
File1
id age
1 10
2 20
3 30
File2
id age
4 40
5 50
6 60
And I want:
id age
1 10
2 20
3 30
4 40
5 50
6 60
Can I do this in SQL?