本文介绍了如何将具有0000-00-00 00:00:00值的日期时间设置为NULL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在数据库上更改一些值.
I need to change a few values on my DB.
我忘记为表格设置可空值,并且默认情况下将其设置为0000-00-00 00:00:00.
I forgot to set nullable to the table and it set to 0000-00-00 00:00:00 by default.
现在我需要在NULL
中转换该值.
Now I need to convert that value in NULL
.
字段类型为Datetime.
The field type is Datetime.
我该怎么办?
我尝试使用典型的Update table set field = NULL WHERE field = '0000-00-00 00:00:00';
,但是它不起作用.
I try with the typical Update table set field = NULL WHERE field = '0000-00-00 00:00:00';
but it doesn't work.
推荐答案
您需要首先使该列可为空:
You need to first make the column nullable:
ALTER TABLE mytable MODIFY COLUMN field DATETIME NULL;
然后更新值:
UPDATE mytable SET field = NULL WHERE field = '0000-00-00 00:00:00';
这篇关于如何将具有0000-00-00 00:00:00值的日期时间设置为NULL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!