牛客網 資料庫SQL實戰8

2021-10-16 17:36:15 字數 790 閱讀 7897

找出所有員工當前(to_date=『9999-01-01』)具體的薪水salary情況,對於相同的薪水只顯示一次,並按照逆序顯示

create

table

`salaries`

(`emp_no`

int(11)

notnull

,`salary`

int(11)

notnull

,`from_date`

date

notnull

,`to_date`

date

notnull

,primary

key(

`emp_no`

,`from_date`))

;

輸入描述:

無輸出描述:

1.首先需要where子句篩選出to_date='9999-01-01』的表項

2.用order by + desc子句根據員工的薪水進行逆序排序

3.題目要求對相同的薪水只顯示一次,可以用distinct關鍵字實現

select

distinct salary

from salaries

where to_date =

'9999-01-01'

order

by salary desc

牛客網資料開發題庫 牛客網資料庫SQL實戰(1)

查詢最晚入職員工的所有資訊 入門 需要查詢最晚入職員工的資訊,即查詢hire date最大的資料,使用倒序並取第乙個人即可。select from employees order by hire date desc limit 0,1 desc 使用order by時在後面加上desc表示倒序,即從...

牛客網 資料庫SQL實戰36 40

36.對於如下表actor,其對應的資料為 actor id first name last name last update 1penelope guiness 2006 02 15 12 34 33 2nick wahlberg 2006 02 15 12 34 33 建立乙個actor nam...

牛客網 資料庫SQL實戰1

題目描述 查詢最晚入職員工的所有資訊,為了減輕入門難度,目前所有的資料裡員工入職的日期都不是同一天 sqlite裡面的注釋為 mysql為comment create table employees emp no int 11 notnull 員工編號 birth date date notnull...