探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解
来源:懂视网
责编:小采
时间:2020-11-09 21:09:00
探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解
探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解:sql2005 若字段定义的类型为datetime,插入为''(空),那么会默认值为1900-01-01 00:00:00.000 解决方法查询的时候过滤下cast(nullif('','') as datetime) 代码如下:select cast('' as datetime) , cast(nullif('','
导读探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解:sql2005 若字段定义的类型为datetime,插入为''(空),那么会默认值为1900-01-01 00:00:00.000 解决方法查询的时候过滤下cast(nullif('','') as datetime) 代码如下:select cast('' as datetime) , cast(nullif('','
sql2005 若字段定义的类型为datetime,插入为''(空),那么会默认值为1900-01-01 00:00:00.000
解决方法查询的时候过滤下cast(nullif('','') as datetime)
代码如下:
select cast('' as datetime)
, cast(nullif('','') as datetime)
, isnull(cast(nullif('','') as datetime),getdate())
/*
----------------------- ----------------------- -----------------------
1900-01-01 00:00:00.000 NULL 2009-02-25 17:18:15.140
(1 行受影响)
*/
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解
探讨:sql插入空,默认1900-01-0100:00:00.000的解决方法详解:sql2005 若字段定义的类型为datetime,插入为''(空),那么会默认值为1900-01-01 00:00:00.000 解决方法查询的时候过滤下cast(nullif('','') as datetime) 代码如下:select cast('' as datetime) , cast(nullif('','