Asked
Active
Viewed 29 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;
rahi ratul75
- 11
- 2