Bird
0
0

What does the SQL function MIN() do when applied to a column of numbers?

easy📝 Conceptual Q11 of 15
SQL - Aggregate Functions
What does the SQL function MIN() do when applied to a column of numbers?
ACalculates the average of the numbers
BFinds the largest number in the column
CFinds the smallest number in the column
DCounts the total numbers in the column
Step-by-Step Solution
Solution:
  1. Step 1: Understand the purpose of MIN()

    The MIN() function is designed to find the smallest value in a column of data.
  2. Step 2: Compare with other functions

    Unlike MAX() which finds the largest, or AVG() which calculates average, MIN() specifically returns the minimum value.
  3. Final Answer:

    Finds the smallest number in the column -> Option C
  4. Quick Check:

    MIN() = smallest value [OK]
Quick Trick: MIN() always returns the smallest value in a column [OK]
Common Mistakes:
MISTAKES
  • Confusing MIN() with MAX()
  • Thinking MIN() calculates average
  • Using MIN() to count rows

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More SQL Quizzes