1 Star 0 Fork 146

一世宿敌 / 数据库SQL实战

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
52.获取Employees中的first_name.md 534 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuthus 提交于 2019-08-12 23:23 . add:all

获取Employees中的first_name

题目描述

获取Employees中的first_name,查询按照first_name最后两个字母,按照升序进行排列

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

答案

select first_name from employees  order by substr(first_name,-2) asc

题解

字符串函数substr的使用

马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
SQL
1
https://gitee.com/yueyue_heart/Database-SQL-Actual-Combat.git
git@gitee.com:yueyue_heart/Database-SQL-Actual-Combat.git
yueyue_heart
Database-SQL-Actual-Combat
数据库SQL实战
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891