Which query would answer Who earns more than five thousand dollars a month

Which query would answer Who earns more than five thousand dollars a month
A: Select query
B: Update query
C: Search query
D: None of these

A select query retrieves records that meet given criteria without altering stored data. Update queries modify existing rows. Search is a generic word not a database query type in most systems. The condition Salary greater than 5000 would appear in a where clause under a select statement. Hence select query is correct.