SELECT id FROM ( SELECT id, ROW_NUMBER() OVER (ORDER BY id) AS rn FROM st ) AS t WHERE rn % 2= 1;本文来自 www.LuoFenMing.com