检查结果null mysql

时间:2013-03-17 19:48:21

标签: php mysql

这下面的mysql命令是return null result。

如何在php中检查这个

SELECT (sum(`money1`) - sum(`money2`)) as sm FROM `manfeatokasb`

下面的代码不正确,无法检查空结果

if ($result['sm'] === null  )
{
    echo 'this command is return null result';
}

2 个答案:

答案 0 :(得分:1)

使用is_null()

if (is_null($result['sm']))
{
    echo 'this command is return null result';
}

答案 1 :(得分:0)

您可以使用mysql_num_rows

if(mysql_num_rows($result) != 0){
     //code if "not null"
}else{
    //code if "null"
}