Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

selecione todas as outras linhas no MySQL sem depender de nenhum ID?


De uma forma única do MySQL:
select  *
from    (
        select  *
        ,       @rn := @rn + 1 as rn
        from    Table1
        join    (select @rn := 0) i
        ) s
where   rn mod 2 = 0 -- Use = 1 for the other set

Exemplo no SQL Fiddle.