Recent questions tagged relational-algebra

2 votes
1 answer
272
THE DIFFERENCE BETWEEN FOLLOWING 2 EXPRESSIONS?a. (selection)year≥2009(takes) NATURAL JOIN  studentb. (selection)year≥2009(takes NATURAL JOIN student)
27 votes
3 answers
274
1 votes
2 answers
275
5 votes
4 answers
278
2 votes
4 answers
280
24 votes
3 answers
285
Consider the relation scheme.$$\begin{array}{ll} \text{AUTHOR} & \text{(ANAME, INSTITUTION, ACITY, AGE)} \\\hline \text{PUBLISHER} & \text{(PNAME, PCITY)} \\\hline \te...
26 votes
5 answers
287
Give a relational algebra expression using only the minimum number of operators from $(∪, −)$ which is equivalent to $R$ $∩$ $S.$
23 votes
1 answer
293
Given two union compatible relations $R_1(A, B)$ and $R_2 (C, D)$, what is the result of the operation $R_1 \Join_{ A = C \wedge B = D} R_2$?$R_1 \cup R_2$$R_1 \times R_2...
38 votes
1 answer
294
42 votes
4 answers
297
Consider the following SQL querySelect distinct $a_1, a_2, …, a_n$from $r_1, r_2, …, r_m$where PFor an arbitrary predicate P, this query is equivalent to which of the...
52 votes
3 answers
299