Home / CSE MCQs / MySQL Database MCQs :: Discussion

Discussion :: MySQL Database MCQs

  1. Is the following query belongs to the "Equality condition?

    SELECT product_type.name, product.name
    FROM product_type INNER JOIN Product
    ON product_type.dept=Product.dept
    WHERE product_type.name='customers_accounts';
  2. A.
    Yes
    B.
    No
    C.
    Depends
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    In the following query there are two equality conditions "ON and "WHERE.


Be The First To Comment