gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 17:52:55 25 4
gpt4 key购买 nike

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

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

关于sql - 在 ORACLE SQL 的 where 子句中对空字符串使用修剪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13131797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com