हम उपयोग कर सकते हैं अगर...else PHP स्क्रिप्ट में शर्त 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\n"; mysql_close($conn); ?>