加入收藏 | 设为首页 | 会员中心 | 我要投稿 辽源站长网 (https://www.0437zz.com/)- 云专线、云连接、智能数据、边缘计算、数据安全!
当前位置: 首页 > 站长百科 > 正文

在ORACLE SQL的where子句中使用空字符串修剪

发布时间:2021-03-19 11:31:38 所属栏目:站长百科 来源:网络整理
导读:我试图弄清楚为什么下面的SQL语句不会在oracle中返回值do Select 'do' from dualwhere trim(' ') = '' 在哪里 Select 'do' from dualwhere trim(' a ')='a' 返回值do. 解决方法 因为trim(”)返回null而不是” SQLFiddle example In Oracle 8,there is no suc

我试图弄清楚为什么下面的SQL语句不会在oracle中返回值do

Select 'do' from dual
where trim('  ') = ''

在哪里

Select 'do' from dual
where trim(' a ')='a'

返回值do.

解决方法

因为trim(”)返回null而不是”

SQLFiddle example

In Oracle 8,there is no such thing as a zero-length string. Any zero-length string,either from a function call or the literal ”,is treated as null.

Source

(编辑:辽源站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读