묻고답하기

$result = mysql_query("select no, inquiry from bbs where no='10' order by no desc", $db_conn);
$read_data = mysql_fetch_array($result);

$query = "update bbs set inquiry='1' where no=$read_data["no"]";
이렇게 하거나
$query = "update bbs set inquiry='1'+ '+ ' where no=$read_data['no']";

이렇게 해도 계속 문법에러가 나오는데 왜그런지 알려주세요.
줄수를 늘려서 어떻게 해볼수는 있겠지만 저렇게 한줄로 처리하고 싶어서요.