การจัดการค่า MySQL NULL
เราได้เห็น SQL SELECT พร้อมกับคำสั่ง WHERE clause เพื่อดึงข้อมูลจากตาราง MySQL แต่เมื่อเราพยายามให้เงื่อนไขซึ่งเปรียบเทียบฟิลด์หรือค่าคอลัมน์กับ NULLมันทำงานไม่ถูกต้อง
เพื่อจัดการกับสถานการณ์ดังกล่าว MySQL มีตัวดำเนินการสามตัว -
IS NULL - ตัวดำเนินการนี้จะคืนค่าจริงถ้าค่าคอลัมน์เป็นโมฆะ
IS NOT NULL - ตัวดำเนินการนี้จะคืนค่าจริงหากค่าของคอลัมน์ไม่ใช่ค่า NULL
<=> - ตัวดำเนินการนี้เปรียบเทียบค่าซึ่ง (ไม่เหมือนตัวดำเนินการ =) เป็นจริงแม้จะเป็นค่า NULL สองค่า
เงื่อนไขที่เกี่ยวข้องกับ NULL เป็นเงื่อนไขพิเศษ คุณไม่สามารถใช้ =NULL หรือ! = NULLเพื่อค้นหาค่า NULL ในคอลัมน์ การเปรียบเทียบดังกล่าวมักจะล้มเหลวเสมอเพราะไม่สามารถบอกได้ว่าจริงหรือไม่ บางครั้งแม้แต่ NULL = NULL ก็ล้มเหลว
หากต้องการค้นหาคอลัมน์ที่เป็นหรือไม่เป็นโมฆะให้ใช้ IS NULL หรือ IS NOT NULL.
ใช้ค่า NULL ที่ Command Prompt
สมมติว่ามีโต๊ะที่เรียก tcount_tbl ในฐานข้อมูล TUTORIALS และประกอบด้วยสองคอลัมน์คือ 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)
การจัดการค่า NULL ในสคริปต์ PHP
คุณสามารถใช้ไฟล์ 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);
?>