ORA-26673: duplicate column name string
Cause: An attempt was made to specify a duplicate column name in an LCR.
Action: Remove the duplicate column and retry the operation.
比如,建表语句时定义重复的字段名称:
“`
create table tb_test(id number, name varchar2(30), id number, addr varchar2(30));
“`
1、查看具体是“哪两个字段”重复定义了,并修改重复定义的字段名称以及字段类型;
2、重新执行建表语句;
3、确认表创建成功。