'MySQL how to select the entire row for the max(salary) [closed]
Solution 1:[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;
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | rahi ratul75 |
