从 Oracle 表中删除非 ASCII 值

发布于 2024-09-11 07:18:08 字数 42 浏览 3 评论 0原文

如何使用 PL/SQL 从 Oracle 表中删除非 ASCII 值?

How can you remove non-ASCII values from a table in Oracle with PL/SQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷了相思 2024-09-18 07:18:08

假设您有一个包含 VARCHAR2 列的表,其中包含一些非字母数字字符,那么您可以用 SQL 语句替换它们。您可以从这样的内容开始,并对其进行改进以满足您的需求:

UPDATE mytable x
   SET x.col = REGEXP_REPLACE(x.col, '[^[:alnum:] ]', ' ')
 WHERE REGEXP_LIKE (x.col, '.*[^[:alnum:]].*')

此语句使用正则表达式尝试用空格替换所有非字母数字字符。如果您想保留其他所需的字符(例如逗号),您可能需要进行调整。

当然,如果您的需求比替换几列中的几个字符要复杂得多,那么您可能需要采取不同的方法。如果是这种情况,那么也许您可以扩展您的问题以提供有关您的具体问题的更多信息。

Assuming that you have a table with a VARCHAR2 column that contains some non-alphanumeric characters, then you can replace them with an SQL statement. You might start with something like this and refine it to suit your needs:

UPDATE mytable x
   SET x.col = REGEXP_REPLACE(x.col, '[^[:alnum:] ]', ' ')
 WHERE REGEXP_LIKE (x.col, '.*[^[:alnum:]].*')

This statement uses regular expressions in an attempt to replace all the non-alphanumeric characters with spaces. You will probably need to make adjustments if you want to leave other desired characters, like commas, in place.

Of course, if your needs are massively more complicated than replacing a few characters in a couple of columns then you might need to take a different approach. If this is the case, then perhaps you could expand your question to give more information about your specific problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文