如何将具有 0000-00-00 00:00:00 值的日期时间设置为 NULL?

How to set to NULL a datetime with 0000-00-00 00:00:00 value?(如何将具有 0000-00-00 00:00:00 值的日期时间设置为 NULL?)
本文介绍了如何将具有 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.

字段类型为日期时间.

我该怎么做?

我尝试使用典型的 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)