InterviewSolution
Saved Bookmarks
| 1. |
You want to display a result query from joining two tables with 20 and 10 rows respectively. Erroneously you forget to write the WHERE clause. What would be the result? |
|
Answer» The result would be the Cartesian product of two tables with 20 x 10 = 200 rows. |
|