我在一个表中有一个varchar2列,其中包含一些条目,例如以下 TEMPORARY-2 TIME ECS BOUND -04-Insuficient Balance 我想更新这些条目并使其成为TEMPORARY-2 X。出路是什么?
问问题
141 次
1 回答
1
为此,您可以使用字符函数,例如substr()
,
replace()
或正则表达式函数 -regexp_replace()
例如。
SQL> with t1(col) as(
2 select 'TEMPORARY-2 TIME ECS BOUND -04-Insuficient Balance'
3 from dual
4 )
5 select concat(substr( col, 1, 11), ' X') as res_1
6 , regexp_replace(col, '^(\w+-\d+)(.*)', '\1 X') as res_2
7 from t1
8 ;
结果:
RES_1 RES_2
------------- -------------
TEMPORARY-2 X TEMPORARY-2 X
所以你的update
陈述可能看起来像这样:
update your_table t
set t.col_name = regexp_replace(col_name, '^(\w+-\d+)(.*)', '\1 X')
-- where clause if needed.
于 2013-08-21T09:01:22.960 回答