日期:2014-05-17  浏览次数:20835 次

问一个sql语句
我用sqlplus   developer对orcle   表中的某列值进行修改
update   netstore.person   set   person.id= '320 '+person.id;
提示无效数字

------解决方案--------------------
update netstore.person set person.id= '320 ' || person.id;
在oracle 连接用 ||