Consider the relation R(A, B) in which (AB) is the primary key and the relations S(A, C) where A is the primary key. Assume there are no null values and no foreign keys or integrity constraints.
Q1: Select A from R where A in (Select A from S)
Q2 : Select A from S where A in (Select A from R)
Which of the following option is correct related to the above queries?