Q. The following MySQL query belongs to which condition types?
SELECT fname
FROM person
WHERE title=’TELLER’;

  • (A) Equality condition
  • (B) Operating system of machine
  • (C) Range condition
  • (D) All of the mentioned
πŸ’¬ Discuss
βœ… 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.
Explanation by: Sandhya Thakur
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.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
91
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Sandhya Thakur
Publisher
πŸ“ˆ
87%
Success Rate