in Databases edited by
17,208 views
85 votes
85 votes

Which of the following query transformations (i.e., replacing the l.h.s. expression by the r.h.s expression) is incorrect? R1 and R2 are relations, C1 and C2 are selection conditions and A1 and A2 are attributes of R1.

  1. $\sigma_{C_1} \left(\sigma_{C_2}\left(R_1\right)\right) \to \sigma_{C_2} \left(\sigma_{C_1}\left(R_1\right)\right)$
  2. $\sigma_{C_1} \left(\pi_{A_1}\left(R_1\right)\right) \to \pi_{A_1} \left(\sigma_{C_1}\left(R_1\right)\right)$
  3. $\sigma_{C_1} \left(R_1 \cup R_2\right) \to  \sigma_{C_1}\left(R_1\right) \cup \sigma_{C_1} \left(R_2\right)$
  4. $\pi_{A_1} \left(\sigma_{C_1}\left(R_1\right)\right) \to \sigma_{C_1} \left(\pi_{A_1}\left(R_1\right)\right)$
in Databases edited by
17.2k views

4 Comments

@nishant_magarde read the arjun sir comment in the below answer 

1
1
here b and d both are incorrect .can any one explain it
0
0

some points

  1. question asking whether replacing lhs exp with rhs exp is fine or not
  2. If we are assuming c1 is applied on a1 for option B then the same should hold for option D also. (In option D the range is reduced early but still the condition is same)
  3. Take a table and take two conditions, one works on a1 and the other doesn’t.. see for yourself.

    both B and D are wrong. (basically equivalent) 
0
0

6 Answers

51 votes
51 votes
Best answer
D) if the selection condition is on attribute $A2$,  then we cannot replace it by RHS as there will not be any attribute $A2$ due to projection of $A1$ only.
edited by

4 Comments

what if in b option i have condition c1 for both a1 and a2 ??
0
0
It is asked if LHS can be replaced by RHS , so basically does RHS able to produce same ROWS and COLUMNS that LHS can PRODUCE ?

 

-> In option (b) , in LHS , we first TAKE OUT a column A1 and then apply condition  C1 on THAT column .

So it is guaranteed that condition is applied on A1.

Thus we get Column A1 and some Rows in answer according to condition C1.

 

Now in RHS we apply SAME  condition C1 on WHOLE TABLE .

Whole Table will definitely contain Column A1.

And then we keep only Column A1,and eliminate Rest , same as lhs.

 

 

-> In option (b), it is inverse of option (b).

LHS = First Condition c1 Is Applied on Whole table. They Have Not Mentioned that condition is applied on which column. Lets assume its applies on A2. Thus we get some rows.

Now Projection applied on A1. Thus we get column A1 and rows(which satisfy c1) in OUTPUT.

 

But In RHS , they are Projecting column A1 and applying same PREVIOUS Condition C1 which we assumed is applied on A2.

But because we projected only A1 from table we cant apply condition on A2 (bcoz it doesnt exist) . ERROR.

 

ITS JUST THE ORDER THAT MATTERS HERE AND WHETHER RHS CAN PRODUCE SAME OUTPUT AS LHS IN ALL CASES.
1
1
Is not option A and B is exactly same?

the only difference between A and B is, LHS of A is in RHS of B, and LHS of B is in RHS of A.

 

Then how D is the answer but B is not?
2
2
14 votes
14 votes
actually in (b) option for validity of L.H.S condition c1 must be applied on attribute a1 and same condition will be applicable  after projection will give  same answer

but in option (d) for validity condition may be any thing because selection is being here first suppose if selection is based on any other attribute other than a1 then in RHS after projection how can we apply same condition because attribute other than a1 are not present there

am i right sir

3 Comments

reshown by
if the option (d) comes first then (b) , then (b) would have been wrong?!

 

how is so??
0
0
Other way to look at this question is like just check if number of attributes available for select operator is same in both LHS and RHS. If projection is being done before selection, attributes available for selection are less and hence the option d.

why B is correct then? Using above logic in LHS of B suppose select operator getting attribute A,B for comparison then in RHS it is getting superset of attributes which will yield same result.
0
0

as u stated for D that "first suppose if selection is based on any other attribute other than a1 then in RHS after projection how can we apply same condition"

This can happen with RHS of III also. Isn't it?

0
0
8 votes
8 votes
a) & c) are correct!  only b) & d) we need to look deep :

Actually, we are assuming here that LHS to be specific and trying to transform the same meaning to RHS. So in b) LHS specifically selects attribute A1 then applies condition C1 so interchanging them in RHS will do no harm.

But in d) we are keeping projections options open by applying first C1 then A1 but in RHS we are restricting by projecting only A1 then C1 so it's not safe.  

For RHS in d) C1 may have been related to other attributes but since they will not be present then the query might return empty but in LHS we are keeping options and not restricting.

Thus answer d

1 comment

Other way to look at this question is like just check if number of attributes available for select operator is same in both LHS and RHS. If projection is being done before selection, attributes available for selection are less and hence the option d.

why B is correct then? Using above logic in LHS of B suppose select operator getting attribute A,B for comparison then in RHS it is getting superset of attributes which will yeild same result.
1
1
7 votes
7 votes

Let the relation R be

A B C
1 x a
2 y b
3 z c

Let the condition be  πA(σ ("A=2" and "C = b" (R))), it will fetch the result as "2". On the other hand the condition  (σ ("A=2" and "C = b" (πA (R)))), it will fetch nothing.

Therefore, option D is false.

 

1 comment

This is the best answer with example. @Arjun do mark it useful.

0
0
Answer:

Related questions