isnull(參數1,參數2),判斷參數1是否爲NULL,若是是,返回參數2,不然返回參數1。字符串
select ISNULL(null,'helloword') 返回helloword字符串select ISNULL('','helloword')返回 空串select