edited by
273 views
2 votes
2 votes
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 values. What is the maximum and minimum possible tuples of the self join of R on C?
edited by

Please log in or register to answer this question.

Related questions

3 votes
3 votes
2 answers
1
iarnav asked Dec 6, 2017
1,315 views
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...
0 votes
0 votes
1 answer
2
Ramayya asked Jan 7
198 views
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 votes
1 answer
4
tusharb asked Mar 27, 2022
693 views
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?