Something like this might work:
SELECT * FROM table ORDER BY id DESC LIMIT 100,1 (limit 100, offset by 1)
or you get all the messages, and when you go through them in codeigniter you can do something like this:
$i = 1;
foreach($posts as $p):
if($i != 1):
endif;
$i++;
endforeach;
source
share