Answers for "SELECT MIN AND MAX IN SQL"

SQL
1

sql select max where

SELECT MAX(salary), MIN(salary) FROM employees WHERE genre = 'MALE';
Posted by: Guest on June-19-2021
0

sql select min

-- This gives you the customer name and balance for
-- the customer with the lowest balance.

select CustomerName, Balance -- start your query as normal
from Customers
where Balance = ( -- now when specifying where, you do another query
  select MIN(Balance) -- where you select the lowest balance
  from Customers
);
Posted by: Guest on April-11-2021
0

sql max min

select emp_name, salary
from employees
where salary = (select max(salary) from employees)
union all
select emp_name, salary
from employees
where salary = (select min(salary) from employees);
Posted by: Guest on November-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language