SQL - Aggregate Functions
Which of the following is the correct syntax to find the maximum salary from a table named
Employees?Employees?MAX() requires parentheses around the column name.SELECT MAX(salary) FROM Employees; uses MAX(salary) which is correct. Forms without parentheses or using [] {} are invalid.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions