To make a date column null, use ALTER TABLE and MODIFY and set the date to NULL. Following is the syntax −,登录后复制,首先让我们创建一个表格。在这里,我们将列设置为NOT NULL −,登录后复制,Now, insert NULL value in the above table. An error would generate since we have set the column to be NOT NULL −,登录后复制,Now, let us alter the table and allow NULL in the above table −,登录后复制,现在,再次尝试使用插入命令将NULL插入到上述表中。由于我们已经修改了表以接受NULL,所以不会生成错误−,登录后复制,Display all records from the table using select statement −,登录后复制,这将产生以下输出 −,登录后复制,以上就是MySQL 查询使日期列为 NULL?的详细内容,更多请关注www.92cms.cn其它相关文章!