Q. Is the following MySQL statement 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’;
β
Correct Answer: (A)
Yes
Explanation: This question is asking if the given SQL statement uses an Equality condition.