I have two table named A and B.
A
Key Name class roll
1 Raj VI 1
2 Rahul VII 5
3 Ravi IX 4
4 Sourav X 2
B
Key Name class roll age city country
2 Rahul VII 5 12 Kolkata India
4 Sourav X 2 15 Milan Italy
Now I want to join these two table based on key and keep all the rows from both the table but keep same column only once. Like my output table structure will be,
Key Name class roll age city country
1 Raj VI 1
2 Rahul VII 5 12 Kolkata India
3 Ravi IX 4
4 Sourav X 2 15 Milan Italy
How to get this desired result using datatable?