Ho due tabelle, una stato e una commento, ogni stato ha dei relativi commenti, $text è il testo dello stato, mentre $quote è quello del commento, il problema è che con questa interrogazione del database mi vengono stampati solo, e dico solo, gli stati con almeno un commento ovviamente, come faccio x dire al compilatore di stampare anche quelli senza nessuno di questi? GRAZIE

$sql = "SELECT * FROM stato, commento WHERE stato.IDS = commento.IDS";
$query = mysql_query($sql) or die (mysql_error());

while ($row = mysql_fetch_assoc($query)) {

$text = $row['TESTO'];
$quote = $row['COMMENTO'];

$stato = "$text $quote";

echo $stato;
$text = NULL;

}