Tienes 2 formas.
O lo limitas con 2 consultas sql
Código PHP:
$sql_first_news = "SELECT * FROM tabla WHERE condicion=condicion LIMIT 0,1";
$query_first_news = mysql_query($sql_first_news);
$first_news = mysql_fetch_array($query_first_news);
$sql_resto_noticias = "SELECT * FROM tabla where condicion=condicion LIMIT 1,19";
...
O bien haces esto
Código PHP:
$i = 1;
while ($row = mysql_fetch_array($query))
{
if ($i == 1)
{
// Primera noticia
}
else
{
//resto de noticias
}
$i++;
}