0

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

Sumary Doctype
Med    10

他们希望文档类型为 10 的所有内容都包含摘要 + XR。

所以他们想要

Sumary    Doctype
XR Med    10

这是针对 oracle 11g 的。我认为这是一个更新,但有没有一种简单的方法可以随心所欲地做这一切,而不是

update document 
set summary = XR med
where summary in ( list all instances) and doctype = 10? 
4

2 回答 2

2

尝试这个:

update document 
set summary = 'XR ' || summary 
where doctype = 10
于 2013-01-10T22:40:28.947 回答
0

这应该适用于您的情况

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

于 2013-01-10T22:41:44.693 回答