MySQL中null值问题

Posted 一枚小菜鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL中null值问题相关的知识,希望对你有一定的参考价值。

      今天写答疑系统的时候,写了这样一截代码:

<?php
session_start();
$db=mysqli_connect(\'localhost\',\'root\',\'root\',\'qa\');
$tname=$_POST[\'teacher\'];
$q="select schedule,place from time where Tname=\'$tname\' and Sname is null";
$arr=mysqli_query($db,$q);
echo "您选择了". $tname."老师"."<br/>请继续选择时刻:"."<br/>";
?>
<table border="1" cellspacing="0">
    <tr>
        <th>时刻:</th>
        <th>地点:</th>
    </tr>

  <?php
    while ($result = mysqli_fetch_assoc($arr)) {
        ?>
        <tr>
            <td><?php echo $result[\'schedule\']; ?></td>
            <td><?php echo $result[\'place\']; ?></td>
        </tr>
        <?php
    }
 ?>
    </table>
 <form method="post" action="Stime1.php">
     您选择的时间是:<input type="datetime" name="time" />
     您的问题是:<textarea name="question"></textarea>
    <input type="submit" name="sure" value="确定"/>
</form>

 是想选出某个老师没有被选过的时间段,这样的时间段才能显示在页面上让新的同学选择,但是页面上显示什么都没有,但是数据库中是有符合条件的数据项的存在的,然后我先把这个sql语句复制粘贴到数据库中运行,显示的是查询结果为空,然后我上网搜了一下,发现MySQL数据库中有的时候is null是不起作用的,下面是百度到的说法:

   最后,把Sname is null改为了Sname=‘   ’,成功的查出了需要的结果,虽然是一个小的知识点,但是还是记一下,免得以后再为这种小错误浪费时间。


以上是关于MySQL中null值问题的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis查询mysql数据返回null

savedInstanceState 在片段中始终为 null

当我将数据从 java 代码添加到 MYSQL Server 时,它不接受 Null 值,如何让它接受 Null 值?

安卓。片段 getActivity() 有时返回 null

android片段getArguments()返回null

getActivity() 在片段上返回 null?