1

我在物理文件中有以下数据:

   KFIELD     KVALUE

   C18R01     ABCD
   C18R01     ABCD
   C18R02     ABCD
   C18R02     ABCD
   C18R03     ABCD
    .
    .
   C18R39     ABCD

我现在想将 KFIELD 列更新为 C38R01、C38R01、C38R02 等

我在 iSeries 上使用 DB2 或 SQL,请帮助更新相同

4

2 回答 2

2

尝试使用REPLACE如下功能

update physical
set KFIELD = REPLACE(KFIELD,'C18R', 'C38R')
于 2013-09-18T20:18:52.377 回答
2

这是一个简单的更新语句,使用replace()

update Physical
    set kfield = replace(kfield, 'C18R', 'C38R')
于 2013-09-18T20:19:12.097 回答