“Min Max em SQL” Respostas de código

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);
Lively Lark

Min Max em SQL

SELECT MIN(column_name),
MAX(column_name),
AVG(column_name)
FROM table_name
WHERE condition;
Tiny Coders

Sql max () e min () com strings

SELECT MIN(first_name) AS min_first_name
FROM Customers;
SAMER SAEID

Respostas semelhantes a “Min Max em SQL”

Perguntas semelhantes a “Min Max em SQL”

Mais respostas relacionadas para “Min Max em SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código