练习sql语句,所有题目来自于力扣(https://leetcode.cn/problemset/database/)的免费数据库练习题。
626.换座位
表:Seat
列名 | 类型 |
---|---|
id | int |
student | varchar |
id 是该表的主键(唯一值)列。
该表的每一行都表示学生的姓名和 ID。
id 是一个连续的增量。
编写解决方案来交换每两个连续的学生的座位号。如果学生的数量是奇数,则最后一个学生的id不交换。按 id 升序 返回结果表。
case when id % 2 != 0 then id + 1
,case when id % 2 = 0 then id - 1
select
case when id = (select count(id) from Seat) and id % 2 != 0 then id
when id % 2 != 0 then id + 1
else id - 1
end as id,student
from Seat
order by id
能运行就行。