Recent questions tagged joins

0 votes
1 answer
1
In SQL the statement $\text{select * from R, S}$ is equivalent to$\text{select * from R natural join S}$$\text{select * from R cross join S}$$\text{select * from R outer ...
1 votes
1 answer
3
I want to join the two tables of movies and actors and then output only those results that have gender =”F”, can you tell me where I am going wrong?
0 votes
2 answers
4
1 votes
2 answers
5
Consider the join of a relation $R$ with relation $S$. If $R$ has $m$ tuples and $S$ has $n$ tuples, then the maximum size of join is$mn$$m+n$$(m+n)/2$$2(m+n)$
1 votes
2 answers
6
0 votes
1 answer
7
0 votes
0 answers
12
in case of outer join for combining two tables, if there is no common attribute does it returns cartesian product just like natural join does?
0 votes
1 answer
13
A system where commutativity is considered different, in how many ways the join of n relations r1,r2, . . . ,rn canbe taken?
0 votes
0 answers
14
Online Site For practicing Relational Algebrahttps://dbis-uibk.github.io/relax/calc.htm
0 votes
5 answers
15
5 votes
1 answer
16
3 votes
1 answer
17
what is different types of joins and what is difference between them ?please explain with example.
0 votes
2 answers
20
Consider the join of a relation R with a relation S. If R has 100 tuples and S has 9 tuples then the maximum and minimum sizes of the join respectively under referential ...
2 votes
0 answers
21
Consider a relation R(A,B,C) with the following functional dependency AC→B .A can take 200 distinct values, B can take 100 distinct values and C can take 1000 distinct ...
3 votes
2 answers
23
Say we have two relations R (a,b,c) and S (b,d,e).Now, R has 200 tuples and S has 300 tuples. What will be Minimum number of tuples when we do R ⋈ S ( ⋈ = Natural Joi...
2 votes
1 answer
24
1 votes
0 answers
25
1 votes
0 answers
26
Given two union compatible relations R1(A,B) and R2(C,D), what is the result of the operation R1 ⋈ (A=C∨B=D)R2?R1∪R2R1×R2R1–R2R1∩R2
2 votes
1 answer
28
what is difference between full outer join and cross product?