- 题目描述
给出下面一个seat表,写出一个sql查询实现交换相邻学生的座位,如果学生人数为奇数最后一个学生的座位不变动。例如下表及其得出的相应结果:
得到的查询结果:
- 题目解答:
分析:对照上表及其查询结果可以得知,当原id为奇数时,交换座位后的id变为id+1,当原id为偶数时,交换座位后的id变为id-1,另一个方面需要考虑的是,学生人数为奇数时,最后一个学生的id不变,故应当用子查询确定学生的人数,然后分情况讨论即可。
select (case
when mod(id,2)!=0 and id!=counts then id+1
when mod(id,2)!=0 and id=counts then id
else id-1
end)as id,student
from seat,(select count(*)as counts
from seat)as seat_counts
order by id asc