viRtuAlinsaniTy
MIS
I am sure this is easy!
I need to take one table called "Company" and one table called "Individual" and merge them into one view. The ID for each entity in the respective table uses a unique ID from one system table, therefore this should be possible and without duplicates. (i.e. there is never a case where an individual and a company share the same ID)
e.g.
Individual Table
ID Name
1 Smith
3 Jones
5 Patel
Company Table
ID Name
2 Deloitte
4 PWC
6 KPMG
And the concatenated view should look like this:
View
ID Name
1 Smith
2 Deloitte
3 Jones
4 PWC
5 Patel
6 KPMG
Thanks for your help!
I need to take one table called "Company" and one table called "Individual" and merge them into one view. The ID for each entity in the respective table uses a unique ID from one system table, therefore this should be possible and without duplicates. (i.e. there is never a case where an individual and a company share the same ID)
e.g.
Individual Table
ID Name
1 Smith
3 Jones
5 Patel
Company Table
ID Name
2 Deloitte
4 PWC
6 KPMG
And the concatenated view should look like this:
View
ID Name
1 Smith
2 Deloitte
3 Jones
4 PWC
5 Patel
6 KPMG
Thanks for your help!