insert into B07(b0110) select '02' from B07 where b0110 ='01'我想复制B07表中一条数据到自身表。B0110是主键,不能重复,需要重新设定。但是要复制必须把其余字段都写出来。有没有不用些其他字段的方法。insert into B07(b0110,其他字段) select '02',其他字段 from B07 where b0110 ='01'