牛客網 資料庫SQL實戰22

2021-10-18 11:13:57 字數 1498 閱讀 8723

統計各個部門的工資記錄數,給出部門編碼dept_no、部門名稱dept_name以及部門在salaries表裡面有多少條記錄sum,按照dept_no公升序排序

create

table

`departments`

(`dept_no`

char(4

)not

null

,`dept_name`

varchar(40

)not

null

,primary

key(

`dept_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`))

;

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.首先聯接三個表

2.根據dept_no和dept_name進行分組

3.根據題目要求按照dept_no公升序排序

select d1.dept_no, d1.dept_name,

count(*

)as sum

from departments as d1 inner

join dept_emp as d2

on d1.dept_no = d2.dept_no inner

join salaries as s

on d2.emp_no = s.emp_no

group

by d1.dept_no, d1.dept_name

order

by d1.dept_no;

牛客網資料開發題庫 牛客網資料庫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...