Assuming you have a column that specifies the ordering of the table, then you can use variables to do what you want:
select t.*
from (select t.*, (@rn := @rn + 1) as seqnum
from table t cross join
(select @rn := 0) vars
order by col
) t
where mod(seqnum, 2) = 0;