資料庫SQL實戰

2021-08-04 15:22:27 字數 625 閱讀 1629

emp_no

birth_date

first_name

last_name

gender

hire_date

10008

1958-02-19

saniya

kalloufi

m1994-09-15

示例1

select*from employeesorder byhire_datedesclimit 0,1;

select * from employees where hire_date = (selcet max(hire_date) from employees);

limit m,n : 表示從第m+1條開始,取n條資料;

limit n : 表示從第0條開始,取n條資料,是limit(0,n)的縮寫。

本題limit 0,1 表示從第(0+1)條資料開始,取一條資料,即取出最晚入職員工。

資料庫SQL實戰

找出所有員工當前 to date 9999 01 01 具體的薪水salary情況,對於相同的薪水只顯示一次,並按照逆序顯示 create table salaries emp no int 11 not null,salary int 11 not null,from date date not ...

資料庫SQL實戰

獲取當前 to date 9999 01 01 薪水第二多的員工的emp no以及其對應的薪水salary create table salaries emp no int 11 not null,salary int 11 not null,from date date not null,to d...

資料庫SQL實戰

查詢所有員工的last name和first name以及對應的dept name,也包括暫時沒有分配部門的員工 create table departments dept no char 4 not null,dept name varchar 40 not null,primary key de...