更新行并保留原始数据

时间:2013-01-10 22:37:34

标签: sql oracle11g

我正在尝试更新数据库中的列。客户希望在行中添加XR +原始信息。所以一个例子就是

Sumary Doctype
Med    10

他们希望doctype为10的所有内容都包含摘要+ XR。

所以他们想要

Sumary    Doctype
XR Med    10

这是为了oracle 11g。我认为这是一个更新,但是有一种简单的方法可以在需要而不是

时完成所有操作
update document 
set summary = XR med
where summary in ( list all instances) and doctype = 10? 

2 个答案:

答案 0 :(得分:2)

试试这个:

update document 
set summary = 'XR ' || summary 
where doctype = 10

答案 1 :(得分:0)

这应该适合您的情况

update document set summary = 'XR ' + summary where summary in ( list all instances) and doctype = 10