1 Star 0 Fork 145

wangorgrace / 数据库SQL实战

forked from xuthus / 数据库SQL实战 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
61.对于employees表中给出奇数行的first_name.md 1012 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuthus 提交于 2019-08-12 23:23 . add:all

对于employees表中,给出奇数行的first_name

题目描述

对于employees表中,给出奇数行的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 e1.first_name from employees e1 where (select count(*) from employees e2 where e1.first_name <= e2.first_name) % 2 = 1

题解

对于MySQL版本来说,可以添加一列临时数据来进行奇偶排序,而后筛选出奇数行

select first_name from (select (@i := @i +1) sn,employees.* from employees,(select @i := 0) a) t where sn % 2 = 1

先排号码,而后取奇数

-- 外层获取奇数行
select e1.first_name from employees e1 where (条件) % 2 = 1
-- count获得排序号码
select count(*) from employees e2 where e1.first_name <= e2.first_name
SQL
1
https://gitee.com/wangorgrace/Database-SQL-Actual-Combat.git
git@gitee.com:wangorgrace/Database-SQL-Actual-Combat.git
wangorgrace
Database-SQL-Actual-Combat
数据库SQL实战
master

搜索帮助