Here are three relations, R(A,B), S(C,D). Their current values are:
R
A B
-------------------
1 4
2 5
3 6
4 7
S
C D
-------------------
0 1
1 0
2 1
Compute the result of the query:
SELECT A, B, C, D
FROM R LEFT OUTER JOIN S
ON R.A = S.C
Identify, in the list below, the row that appears in the result.
a. (4, 7, null, null)
b. (4, 7, 0, 1)
c. (4, 7, 1, 0)
d. (4, 7, 2, 1)
Answer: A