--先找出一条插入语句,插入数据insert into user_info (ID, NAME) values (sys_guid(), '00000000000');--通过固定属性(name)查询该语句,将*换成所有字段,然后将一些唯一约束换成变动的值,例如将id换成sys_guid()select sys_guid(), NAME from user_info where name = '00000000000'--反复执行下面插入语句就会实现2的n次方插入数据了就可以插入几百万数据insert into user_info (ID, NAME) select sys_guid(), NAME from user_info where name = '00000000000'