ORA-00955: 名称已由现有对象使用-- Create table
create table RYDW_LCXX
(
  LM  VARCHAR2(50) not null,
  LID VARCHAR2(50) not null,
  CS  NUMBER not null,
  LCC NUMBER not null,
  LCK NUMBER not null,
  LCG NUMBER not null
)
tablespace USERS
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64
    minextents 1
    maxextents unlimited
  )