问题描述
- SQL语句问题,关于时间格式问题
-
我的数据库里时间格式为0000-00-00 00:00:00
如何在我的SQL语句中将其设置为空
解决方案
ALTER TABLE 表名 modify 列名 null
解决方案二:
update table set time=null where time ='0000-00-00'
解决方案三:
update table A set time=“”
解决方案四:
update table set time=""
解决方案五:
sql时间格式转换问题
时间: 2025-01-26 10:34:35