Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到一个带有前导和尾随单引号的 Varchar2 变量,但我想删除这些单引号,我这样做就像
trim(BOTH '''' FROM lastname);
它给了我正确的结果,但它是正确的方法还是有其他方法可以做到这一点。
提前致谢。
我认为你不能得到比你已经提出的更好的了。所以是的,这是正确的方法。
使用BOTH不是必需的,因为它是默认值(与同样有效的leading和trailing说明符相反)。因此,根据您的偏好(short vs clear),您可以将其省略,以便您的陈述变为
BOTH
leading
trailing
trim('''' from lastname)