Is there a function to split a string in PL/SQL?(PL/SQL 中是否有拆分字符串的函数?)
问题描述
我需要编写一个过程来规范化具有多个由一个字符连接的标记的记录.我需要获取分割字符串的这些标记,并将每个标记作为新记录插入表中.Oracle 是否有类似拆分"功能的功能?
I need to write a procedure to normalize a record that have multiple tokens concatenated by one char. I need to obtain these tokens splitting the string and insert each one as a new record in a table. Does Oracle have something like a "split" function?
推荐答案
你必须自己动手.例如,
You have to roll your own. E.g.,
这篇关于PL/SQL 中是否有拆分字符串的函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!