ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
select company , max(salary) as highest_salary, min(salary) as lowest_salaryfrom employee_infogroup by company;
👍
With sal as(select *,max(salary) over(partition by department) as max_sal, min(salary) over(partition by department) as min_salfrom emploee_info)select * from sal
Nice
select company ,
max(salary) as highest_salary,
min(salary) as lowest_salary
from employee_info
group by company;
👍
With sal as(select *,max(salary) over(partition by department) as max_sal, min(salary) over(partition by department) as min_sal
from emploee_info)
select * from sal
Nice