I need to create a view (or table) that contains values of n rows taken from two different tables having the same structure. For instance:
table europe
id name Country
----------------------------
1 Franz Germany
2 Alberto Italy
3 Miguel Spain
USA table
id name Country
----------------------------
1 John USA
2 Matthew USA
The combined view should be like this:
WORLD table
id name Country
----------------------------
1 John USA
2 Matthew USA
1 Franz Germany
2 Alberto Italy
3 Miguel Spain
is it possible? if so how?
Thanks in advance for your help, best regards
source
share