您好,欢迎访问一九零五行业门户网

我们如何使用PHP脚本处理存储在MySQL表中的NULL值?

我们可以在 php 脚本中使用 if...else 条件来准备基于 null 值的查询。为了说明这一点,我们使用以下示例 -
示例在此示例中,我们使用名为 'tcount_tbl' 的表,其中包含以下数据 -
mysql> select * from tcount_tbl;+-----------------+----------------+| tutorial_author | tutorial_count |+-----------------+----------------+| mahran | 20 || mahnaz | null || jen | null || gill | 20 |+-----------------+----------------+4 rows in set (0.00 sec)
现在,以下是一个php脚本,它从外部获取 ‘tutorial_count’的值,并将其与字段中可用的值进行比较。
<?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('could not connect: ' . mysql_error()); } if( isset($tutorial_count )) { $sql = 'select tutorial_author, tutorial_count from tcount_tbl where tutorial_count = $tutorial_count'; } else { $sql = 'select tutorial_author, tutorial_count from tcount_tbl where tutorial_count is $tutorial_count'; } mysql_select_db('tutorials'); $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('could not get data: ' . mysql_error()); } while($row = mysql_fetch_array($retval, mysql_assoc)) { echo "author:{$row['tutorial_author']} <br> ". "count: {$row['tutorial_count']} <br> ". "--------------------------------<br>"; } echo "fetched data successfully
"; mysql_close($conn);?>
以上就是我们如何使用php脚本处理存储在mysql表中的null值?的详细内容。
其它类似信息

推荐信息