①:让主键失效:alter table 表名 disable primary key cascade;
②:删除数据:delete from 表名 where id = ‘xx’;(删除指定数据)
或者
delete from 表名;(删除表中所有数据,没有备份的话谨慎使用)
③:让主键生效:alter table 表名 enable primary key;
①:让主键失效:alter table 表名 disable primary key cascade;
②:删除数据:delete from 表名 where id = ‘xx’;(删除指定数据)
或者
delete from 表名;(删除表中所有数据,没有备份的话谨慎使用)
③:让主键生效:alter table 表名 enable primary key;