SELECT * FROM
Table_1 FULL OUTER JOIN
Table_2 ON Table_1.colomn_name = Table_2.column_name
2). And if you want to add three or four table by a single query...
SELECT * FROM
Table_1 FULL OUTER JOIN
Table_2 ON Table_1.EmployeeName = Table_2.EmployeeName
FULL OUTER JOIN
Table_3 ON Table_2.EmployeeName = Table_3.EmployeeName
Note - Foreign keys must be used in all the tables in which the tables that we call them to join. This means that all those tables should have a common column name.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
I would like to suggest join concept to add multiple tabe in a single query as per above post mr.SANAT plz use this one.
Hi, Rahul
Please, use this query ...
1). If you want to Merge Two Tables...
2). And if you want to add three or four table by a single query...
Note - Foreign keys must be used in all the tables in which the tables that we call them to join. This means that all those tables should have a common column name.