[MySQL] Join Select


$sql 	= "SELECT * FROM blog, responses WHERE blog.ID=$threadID or responses.thread=$threadID ORDER BY time asc";
$rs 	= mysql_query($sql, $conn) or die ("Could not execute query 1. <a href=\"$link\">Try again</a>.");

Is this syntax for join selecting correct? The blog table contains all the thread starting posts and the responses table contains all the following posts. I keep on getting the error message “could not execute query 1.” Could this be caused by the fact that I have no entries in the responses table yet?