626. Exchange Seats¶ SQL 1 2 3 4SELECT ROW_NUMBER() OVER(ORDER BY IF(MOD(id, 2) = 0, id - 1, id + 1)) AS id, student FROM Seat;