Q. The following MySQL query belongs to which condition types?
SELECT fname
FROM person
WHERE title=’TELLER’;
β
Correct Answer: (A)
Equality condition
Explanation: Equality condition: This is the correct option. The condition in the query title='TELLER' specifies that the value in the "title" column must be exactly equal to 'TELLER'. It checks for equality between the column value and the specified constant value.