查詢最晚入職員工的所有資訊 牛客網SQL實戰篇

2021-08-20 20:12:50 字數 591 閱讀 4233

資料表

create table `employees` (

`emp_no` int(11) not null,

`birth_date` date not null,

`first_name` varchar(14) not null,

`last_name` varchar(16) not null,

`gender` char(1) not null,

`hire_date` date not null,

primary key (`emp_no`));

解題思路

top的用法

limit的用法

first(col_name)的用法

提交**的時候發現top跟first是不能用的,不知道是不是因為3.7.9版本不支援的原因。

ac的sql**

select * from employees order by hire_date desc limit 0 ,1

01 查詢最晚入職員工的所有資訊 題解

有乙個員工employees表簡況如下 建表語句如下 create table employees emp no int 11 notnull birth date date notnull first name varchar 14 not null last name varchar 16 no...

sql演算法 查詢最晚入職員工的所有資訊

建表語句如下 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...

資料庫 查詢最晚入職員工的所有資訊

查詢最晚入職員工的所有資訊 create table employees emp no int 11 not null,birth date date not null,first name varchar 14 not null,last name varchar 16 not null,gend...