我的數據庫包含下面的示例數據。我想選擇紅色突出顯示的行。嘗試此查詢,但不顯示我想要的行。很感謝任何形式的幫助。MYSQL空字段查詢語句
<?php
mysql_connect("localhost", "xxxxx", "xxxxx") or
die("Could not connect: " . mysql_error());
mysql_select_db("xxxxx");
$result = mysql_query("SELECT * FROM tablename");
$row = mysql_fetch_array($result);
if($row['imageurl'] == 0){
echo $row['email'];
}
mysql_free_result($result);
?>
上面的代碼將返回'[email protected]'。