MySQLNULL値の処理
SQLを見てきました SELECT と一緒にコマンド WHERE MySQLテーブルからデータをフェッチする句ですが、フィールドまたは列の値を次のように比較する条件を指定しようとすると、 NULL、正しく動作しません。
このような状況を処理するために、MySQLは3つの演算子を提供します-
IS NULL −列の値がNULLの場合、この演算子はtrueを返します。
IS NOT NULL −列の値がNULLでない場合、この演算子はtrueを返します。
<=> −この演算子は値を比較します。これは(=演算子とは異なり)2つのNULL値に対しても当てはまります。
NULLを含む条件は特別です。=は使用できませんNULL または!= NULL列でNULL値を検索します。そのような比較は、それらが真であるかどうかを判断することが不可能であるため、常に失敗します。NULL = NULLでも失敗することがあります。
NULLである、またはNULLでない列を検索するには、次を使用します。 IS NULL または IS NOT NULL。
コマンドプロンプトでNULL値を使用する
と呼ばれるテーブルがあると仮定します tcount_tbl チュートリアルデータベースにあり、2つの列が含まれています。 tutorial_author そして tutorial_count、ここでNULLのtutorial_countは、値が不明であることを示します。
例
次の例を試してください-
root@host# mysql -u root -p password;
Enter password:*******
mysql> use TUTORIALS;
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 = '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\n";
mysql_close($conn);
?>