To make a date column null, use ALTER TABLE and MODIFY and set the date to NULL. Following is the syntax −
alter table yourTableName modify column yourColumnName date NULL;
首先让我们创建一个表格。在这里,我们将列设置为NOT NULL −
mysql> create table DemoTable ( ShippingDate date NOT NULL ); Query OK, 0 rows affected (0.78 sec)
Now, insert NULL value in the above table. An error would generate since we have set the column to be NOT NULL −
mysql> insert into DemoTable values(null); ERROR 1048 (23000) − Column 'ShippingDate' cannot be null
Now, let us alter the
table and allow NULL in the above table −
mysql> alter table DemoTable modify column ShippingDate date NULL; Query OK, 0 rows affected (1.81 sec) Records : 0 Duplicates : 0 Warnings : 0
现在,再次尝试使用插入命令将NULL插入到上述表中。由于我们已经修改了表以接受NULL,所以不会生成错误−
mysql> insert into DemoTable values(null); Query OK, 1 row affected (1.21 sec
Display all records from the table using select statement −
mysql> select *from DemoTable;
这将产生以下输出 −
+--------------+ | ShippingDate | +--------------+ | NULL | +--------------+ 1 row in set (0.00 sec)
复制本文链接文章为作者独立观点不代表优设网立场,未经允许不得转载。
文章推荐更多>
- 1mysql命令行是什么
- 2俄罗斯搜索引擎入口在哪里 俄罗斯引擎入口进入
- 3台式电脑可以连接wifi吗 台式机连接wifi可行性分析
- 40x000000a5蓝屏代码是什么意思 蓝屏代码0x000000a5的原因分析
- 5mysql安装不成功怎么办
- 6如何查看oracle数据库状态
- 7电脑快捷键使用大全 常用快捷键汇总
- 8wordpress怎么给777权限
- 9192.168.0.1登录入口 192.168.0.1登录界面
- 10wordpress如何备份
- 11wordpress怎么做多级分类
- 12如何把wordpress改成中文版
- 13Wordpress中不用的图片怎么删除
- 14mysql中!什么意思
- 15谷歌浏览器入口网页版 谷歌浏览器入口直接打开
- 16电脑分辨率怎么调 调整分辨率步骤
- 17夸克怎么免费追剧 轻松追剧的方法分享
- 18c盘红了怎么清理 c盘爆红紧急清理的4个步骤
- 19oracle数据库sid怎么看
- 20苹果UC缓存视频转存失败
- 21WordPress怎么加广告位
- 22mysql中如何创建表
- 23手机浏览器哪个最好用 安卓手机浏览器大全
- 24谷歌浏览器在线浏览入口 谷歌浏览器在线使用网页版
- 25mysql数据库属于哪种结构模型
- 26wordpress网站如何添加栏目
- 27电脑摄像头连接监控软件操作教程
- 28安卓UC缓存视频导出到新机
- 29oracle存储过程怎么看
- 30mysql怎么写sql语句
