題目描述
找出所有員工當前(to_date=『9999-01-01』)具體的薪水salary情況,對於相同的薪水只顯示一次,並按照逆序顯示
create tablesalaries
(
emp_no
int(11) not null,
salary
int(11) not null,
from_date
date not null,
to_date
date not null,
primary key (emp_no
,from_date
));
輸入描述
輸出描述
思路
1、相同薪水顯示一次,則使用select distinct可去除重複值
2、題目要求逆序排序,則應用order by salary desc
**
select distinct salary
from salaries
where to_date =
'9999-01-01'
order by salary desc;
獲取所有非manager員工當前的薪水情況
獲取所有非manager員工當前的薪水情況,給出dept no emp no以及salary 當前表示to date 9999 01 01 create table dept emp emp no int 11 not null,dept no char 4 not null,from date d...
找出所有員工當前薪水salary情況
找出所有員工當前 to date 9999 01 01 具體的薪水salary情況,對於相同的薪水只顯示一次,並按照逆序顯示 create table salaries emp no int 11 not null,salary int 11 not null,from date date not ...
查詢所有員工入職時候的薪水情況 6
題目描述 查詢所有員工入職時候的薪水情況,給出emp no以及salary,並按照emp no進行逆序 create tableemployees emp noint 11 not null,birth datedate not null,first namevarchar 14 not null,...