一、题目 二、代码 # Write your MySQL query statement below #id 奇数 加一 id 偶数 建议 再按id排序 是在选而不是操作 select (case when id%2=1 and id != (select count(id) from Seat) then id+1 when id%2=0 then id-1 else id end) as id,student from Seat order by id 三、运行结果