InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Join And Union? |
|
Answer» JOIN is USED to retrive data from DIFFERENT TABLES using a single sql statement.union is used to combine the results of TWO or more sql querries. join is used to retrive data from different tables using a single sql statement.union is used to combine the results of two or more sql querries. |
|