Home » MYSQL » Mysql miscellaneous » Question
  1. Does the following query belong to the “Inequality 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’;
    1. Depends
    2. No
    3. Yes
    4. All of above
    5. None of these
Correct Option: C

In the following query operator “!=”are inequality operator.



Your comments will be displayed only after manual approval.