欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

oracle块中变量判断是否为空 有大用 有大大用 有大大大用

1) 如果变量a = ''空串,则if判断时a = '' 及 a != ''都为false

-----------------------------------------------------------------------------------

2) 如果变量a = ''空串,则if判断时a is null 为true 及 a is not null为false

--------------------------------------------------------------------------------------------

3)如果a = '1'不为空串,if判断时a = '1'为true,a != '1'及a <> '1'为false

由此可见,当变量为空串 '' 时,等同null,需要用is null/is not null来判断,用= / !=判断不出来

<>等同!=

 


来自  https://blog.csdn.net/qq_32769447/article/details/103485255


普通分类: