πA,F (σC = D (R × S))
find equivalent SQL query.1
select * from R,S where C = D
2
Select A, F from R, S where C = D
3
Select distinct C, D from R, S where A = F
4
Select distinct A, F from R, S where C = D
5
Question Not Attempted
πA,F (σC = D (R × S))
find equivalent SQL query.