declare @t table(d datetime)
insert @t select null
union all select ''
union all select getdate()select * from @t/*--测试结果d                                                      
------------------------------------------------------ 
NULL
1900-01-01 00:00:00.000
2004-08-28 16:22:13.263(所影响的行数为 3 行)
--*/