-
Algorithm
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley.
SELECT
COUNT(*) AS counts
FROM seat -
MySQL
SELECT
(CASE
WHEN MOD(id, 2) != 0 AND counts != id THEN id + 1
WHEN MOD(id, 2) != 0 AND counts = id THEN id
ELSE id - 1
END) AS id,
student
FROM
seat,
(SELECT
COUNT(*) AS counts
FROM
seat) AS seat_counts
ORDER BY id ASC;
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s.
When an unknown printer took a galley of type and scrambled it to
make a type specimen book.
Comments 1,392
John Doi
Sep 13, 2022 / 11:17 pm
John Doi
Sep 13, 2022 / 11:17 pm