我正在尝试更新数据库中的列。客户希望在行中添加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?
答案 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