牛客SQL練習第57題

2021-10-09 08:08:00 字數 1539 閱讀 3797

使用含有關鍵字exists查詢未分配具體部門的員工的所有資訊。

create

table

`employees`

(`emp_no`

int(11)

notnull

,`birth_date`

date

notnull

,`first_name`

varchar(14

)not

null

,`last_name`

varchar(16

)not

null

,`gender`

char(1

)not

null

,`hire_date`

date

notnull

,primary

key(

`emp_no`))

;

create

table

`dept_emp`

(`emp_no`

int(11)

notnull

,`dept_no`

char(4

)not

null

,`from_date`

date

notnull

,`to_date`

date

notnull

,primary

key(

`emp_no`

,`dept_no`))

;

輸出格式:

emp_no

birth_date

first_name

last_name

gender

hire_date

10011

1953-11-07

mary

sluis

f1990-01-22

用exists的解法:

select

*from employees

where

notexists

(select emp_no from dept_emp where emp_no =

= employees.emp_no)

用in的解法:

select

*from employees

where emp_no notin(

select emp_no from dept_emp)

;

還可以用左連線:

select e.

*from employees e left

join dept_emp de

on e.emp_no=de.emp_no

where de.emp_no is

null

;

關於exists與in的區別參考此篇部落格

牛客SQL練習第60題

按照salary的累計和running total,其中running total為前n個當前 to date 9999 01 01 員工的salary累計和,其他以此類推。具體結果如下demo展示。create table salaries emp no int 11 notnull salary...

牛客SQL練習第68題

牛客每天有很多人登入,請你統計一下牛客每個使用者最近登入是哪一天,用的是什麼裝置.有乙個登入 login 記錄表,簡況如下 第1行表示id為2的使用者在2020 10 12使用了客戶端id為1的裝置登入了牛客網 第4行表示id為3的使用者在2020 10 13使用了客戶端id為2的裝置登入了牛客網 ...

牛客SQL練習第25題

獲取員工其當前的薪水比其manager當前薪水還高的相關資訊,當前表示to date 9999 01 01 結果第一列給出員工的emp no,第二列給出其manager的manager no,第三列給出該員工當前的薪水emp salary,第四列給該員工對應的manager當前的薪水manager ...