问个简单的SQL....
表中的某个字段为double类型,允许为空。 
 在INSERT   语句中怎么写,才能让该字段为空值?   
 insert   into   tableA   (   col_double   )   values(????) 
 values些什么东西啊?
------解决方案--------------------insert into tableA ( col_double ) values( null )
------解决方案--------------------insert into tableA ( col_double ) values( null )
------解决方案--------------------declare @test table (c1 int, c2 float, c3 varchar(1)) 
 insert @test values(1, null,  '1 ') 
 select * from @test