问一个sql语句我用sqlplusdeveloper对orcle表中的某列值进行修改updatenetstore.personsetperson.id 320
问一个sql语句
我用sqlplus developer对orcle 表中的某列值进行修改
update netstore.person set person.id= '320 '+person.id;
提示无效数字
[解决办法]
update netstore.person set person.id= '320 ' || person.id;
在oracle 连接用 ||
