isnull(参数1,参数2),判断参数1是否为NULL,若是是,返回参数2,不然返回参数1。字符串
select ISNULL(null,'helloword') 返回helloword字符串select ISNULL('','helloword')返回 空串select