Home / CSE MCQs / MySQL Database MCQs :: Discussion

Discussion :: MySQL Database MCQs

  1. The following query belongs to which condition types?

    SELECT fname
    FROM person
    WHERE dept_id= (SELECT dept_id FROM department WHERE names='s');
  2. A.
    Equality condition
    B.
    Inequality condition
    C.
    Range condition
    D.
    All of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    In the following query column equate to the value returned by subquery.


Be The First To Comment