it shouldnt' matter that the id's are not sequencial.
for example .. no matter how you ordered your news .. this would pull up the last 5 articles:
PHP Code:
<?
$result=mysql_query("select * from news order by news_id desc limit 5");
?>
but then again, your right, .. i don't see your code.