Asked
Active
Viewed 48 times
1 Answers
1
Suppose you have a table name employees that table have a column name =income and you want to find max salary from the table and your query will be
SELECT MAX(income) AS "Maximum Income" FROM employees;

Imtiyaz Ratul
- 11
- 2