InterviewSolution
Saved Bookmarks
| 1. |
If there are 10 rows in 'Emp' table and 5 rows in 'Department' table, how many rows will be displayed by the following query?SELECT * FROM Emp, Department;Write the term used for the join being used on the two tables mentioned above. |
|
Answer» 50 rows. This kind of joining is known as Cartesian Product. |
|