Customized join output
Hi Everyone,
Example consider two tables Persons and Employee
Persons table sample:
Name,Address
1. john,new York
2. Diana,new jersey
Employee table sample:
Employee ID,Team
1. 123,developer
2. 568,tester
Required join Table output should be like
Name,Address,Employee ID,Team
1. john,new York,null,null
2. Diana,new jersey,null,null
3. null.null,123,developer
4. null,null,568,tester
I want above sample as output is there any way to solve this issue.help me please
0
Comments
Possible solution:
Thank u Mr.Jim Knicely
This looks like a standard FULL OUTER JOIN requirement.
Let me see.