What Is The Syntax To Get Minimum Value Of A Field #120
What is the syntax to get minimum value of a field?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Numeric Functions - SQL Min and Max Functions - Quiz No.1.
What is the syntax to get minimum value of a field?
Select min(column_name) from table_name Where condition(s);
Select minimum(column_name) from table_name Where condition(s);
Select column_name from table_name Where min(column_name);
Select min( ) column_name from table_name Where condition(s);