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.
Asked by ManasaP
(1 rep)
Mar 1, 2019, 02:04 PM
Last activity: Apr 11, 2019, 01:50 PM
Last activity: Apr 11, 2019, 01:50 PM