What Is The Syntax To Get Maximum Value Of A Field #121
What is the syntax to get maximum 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 maximum value of a field?
Select large(column_name) from table_name Where condition(s);
Select column_name from table_name Where max (column_name);
Select max(column_name) from table_name Where condition(s);
Select max( ) column_name from table_name Where condition(s);