retagged by
414 views
0 votes
0 votes

Here are two relations, R(A,B) and S(C,D). Their current values are:

R =

A B
1 2
3 4
5 6
7 8

S =

C D
2 10
4 12
6 14
8 16

Compute the result of the query:

     SELECT A, D
     FROM R, S
     WHERE B+C = 10

Identify, in the list below, the row that appears in the result.

   a)  (7,10)      b)  (1,10)      c)  (1,12)      d)  (3,10)
retagged by

2 Answers

Related questions