国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

MySQL NULL值

2024-07-24 12:32:40
字體:
供稿:網(wǎng)友
         我們已經(jīng)看到SQL SELECT命令和WHERE子句一起使用,來從MySQL表中提取數(shù)據(jù),但是,當我們試圖給出一個條件,比較字段或列值設(shè)置為NULL,它確不能正常工作。
 
        為了處理這種情況,MySQL提供了三大運算符
 
        IS NULL: 如果列的值為NULL,運算結(jié)果返回 true
 
        IS NOT NULL: 如果列的值不為NULL,運算結(jié)果返回 true
 
<=>: 運算符比較值,(不同于=運算符)即使兩個空值它返回 true
 
涉及NULL的條件是特殊的。不能使用= NULL或!= NULL來匹配查找列的NULL值。這樣的比較總是失敗,因為它是不可能告訴它們是否是true。 甚至 NULL = NULL 也是失敗的。
 
要查找列的值是或不是NULL,使用IS NULL或IS NOT NULL。
 
在命令提示符,使用NULL值
假設(shè)在 test 數(shù)據(jù)庫中的表 tcount_tbl 它包含兩個列 tutorial_author 和 tutorial_count, 其中 tutorial_count 的值為NULL表明其值未知:
 
示例
試試下面的例子:
 
root@host# mysql -u root -p password;
Enter password:
mysql> use test;
Database changed
mysql> create table tcount_tbl
    -> (
    -> tutorial_author varchar(40) NOT NULL,
    -> tutorial_count  INT
    -> );
Query OK, 0 rows affected (0.05 sec)
mysql> INSERT INTO tcount_tbl
    -> (tutorial_author, tutorial_count) values ('mahran', 20);
mysql> INSERT INTO tcount_tbl
    -> (tutorial_author, tutorial_count) values ('mahnaz', NULL);
mysql> INSERT INTO tcount_tbl
    -> (tutorial_author, tutorial_count) values ('Jen', NULL);
mysql> INSERT INTO tcount_tbl
    -> (tutorial_author, tutorial_count) values ('Gill', 20);
 
mysql> SELECT * from tcount_tbl;
+-----------------+----------------+
| tutorial_author | tutorial_count |
+-----------------+----------------+
| mahran          |             20 |
| mahnaz          |           NULL |
| Jen             |           NULL |
| Gill            |             20 |
+-----------------+----------------+
4 rows in set (0.00 sec)
 
mysql>
可以看到,= 及 != 不能與 NULL值不能正常工作(匹配)如下:
 
mysql> SELECT * FROM tcount_tbl WHERE tutorial_count = NULL;
Empty set (0.00 sec)
mysql> SELECT * FROM tcount_tbl WHERE tutorial_count != NULL;
Empty set (0.01 sec)
要查找記錄中,其中 tutorial_count 列的值是或不是NULL,查詢應該這樣寫:
 
mysql> SELECT * FROM tcount_tbl
    -> WHERE tutorial_count IS NULL;
+-----------------+----------------+
| tutorial_author | tutorial_count |
+-----------------+----------------+
| mahnaz          |           NULL |
| Jen             |           NULL |
+-----------------+----------------+
2 rows in set (0.00 sec)
mysql> SELECT * from tcount_tbl
    -> WHERE tutorial_count IS NOT NULL;
+-----------------+----------------+
| tutorial_author | tutorial_count |
+-----------------+----------------+
| mahran          |             20 |
| Gill            |             20 |
+-----------------+----------------+
2 rows in set (0.00 sec)
在PHP腳本中處理NULL值
可以使用 if...else 條件來基于NULL值的查詢。
 
示例
下面的示例,從外面使用 tutorial_count,然后在表中可用的值進行比較。
 
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = '';
$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('test');
$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/n";
mysql_close($conn);
?>

(編輯:武林網(wǎng))

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 通许县| 景宁| 山东省| 鄯善县| 遂昌县| 黑龙江省| 孟津县| 资阳市| 蒲城县| 攀枝花市| 兰溪市| 武陟县| 旬邑县| 牙克石市| 呼图壁县| 山东省| 射洪县| 交城县| 日土县| 黄龙县| 卫辉市| 昌吉市| 马山县| 汤阴县| 谷城县| 女性| 抚顺市| 福泉市| 张家界市| 山东省| 颍上县| 寻乌县| 鹰潭市| 紫云| 晋宁县| 永新县| 自贡市| 通辽市| 乐昌市| 浦县| 壤塘县|