关于SqlServer的整形字段和空的查询

现象如下: 字段intType是整形的。
select * from Test where varcharType='test' and intType=''
可以查出 intType为0的记录。
update Test set dcr_times=''这时 Test的值为0。 

关于 Oracle 和 SQLServer 的区别:

insert into table1(a,b) values(null,'');
在Oracle中插入记录的a列的值和b列的值都为空值(Null)
在SQLServer中插入记录的a列的值为空值(Null),b列的值为默认值,默认值对于char/varchar类型来讲为空字符串,对于数值类型来讲为0,对于日期或时间类型来讲为1900-01-01 :00:00:00 

posted on 2012-05-28 16:32  refactor  阅读(1411)  评论(0编辑  收藏  举报

导航