engineering computer science MCQ #739

What is the result of the SQL query: SELECT MIN(salary) FROM employees?

engineering computer science MCQ #739

  1. Question 1

    Q1. What is the result of the SQL query: SELECT MIN(salary) FROM employees?

    • A) Maximum salary
    • B) Minimum salary
    • C) Average salary
    • D) Total salary

    Answer: Minimum salary

    Explanation: The SQL query 'SELECT MIN(salary) FROM employees' returns the minimum salary from the employees table, using the MIN aggregate function.