Para ese control deberias de hacerlo directamente en PHP:
  Código PHP:
    $sql = "SELECT * FROM noticias ORDER BY fecha DESC"; 
$resultado = mysql_query($sql) or die (mysql_error()); 
$prevDate = "";
while ($fila=mysql_fetch_object($resultado))
{ 
     if( $prevDate != $fila->fecha_noticia ) {
           echo $fila->fecha_noticia . "<hr />";
           $prevDate = $fila->fecha_noticia;
     }
     echo $fila->titulo_noticia;
} 
    
  Saludos.