If table A has m rows and table B has n rows then how many rows will the following query return
SELECT A.A1,B.B1
FROM A,B
WHERE A.A3=B.B3
Answers
Answered by
3
Answer:
If table A has m rows and table B has n rows then how many rows will the following query return 2
Answered by
0
SELECT A.A1,B.B1
FROM A,B
WHERE A.A3=B.B3
In the query return row
- When all of the key values are the same, the most rows are produced. The greatest number in this situation is m * n, and the inner join is identical to a cross join.
- With the exception that an outside join is guaranteed to deliver results even when one of the tables is empty, the maximum number for both left and right outer joins is essentially the same.
- Therefore, the maxima are written as greatest(m, n, m * n).
#SPJ3
Similar questions
Science,
6 months ago
Math,
6 months ago
English,
1 year ago
Computer Science,
1 year ago
Biology,
1 year ago