SQL server WHERE 字段 A 等于空值 ,WHERE A=NULL 好像不行
判断为空可以用 where A is null
判断为空字符串用 where A= ''
写成 A IS NULL试一下
where isnull (a,'')=''