我有一个儿童桌子。并在创建表时使用ON DELETE CASCADE在其中使用外键。
子表或父表中都没有记录。
我希望主键,外键保持原样,但只希望从子表中删除CASCADING选项。
无论如何,我可以更改该子表。
谢谢。
ON DELETE { NO ACTION | CASCADE | SET NULL | SET DEFAULT }
默认为NO ACTION。
因此,请尝试将您的子表改回默认值。
(Oracle)您只能更改约束的状态。 ON DELETE不是状态。因此,您需要删除约束并重新创建它。
drop table t1 cascade constraints;
create table t1 (id number unique, rid number constraint t1_fk references t1(id) on delete cascade);
alter table t1 drop constraint t1_fk;
alter table t1 add constraint t1_fk foreign key(rid) references t1(id);
如果使用的是Oracle,则有不同的字典视图可以帮助您正确地重新创建约束。
表格:
SHOW CREATE TABLE表;
CREATE TABLE `table` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`id_departamento` int(11) unsigned DEFAULT NULL,
`name` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `id_departamento` (`id_departamento`),
CONSTRAINT `departamentos_direcciones_pedidos_ibfk_1` FOREIGN KEY (`id_departamento`) REFERENCES `departamentos` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
ALTER TABLE departamentos_direcciones_pedidos DROP CONSTRAINT departamentos_direcciones_pedidos_ibfk_1;
ALTER TABLE departamentos_direcciones_pedidos添加外键(id_departamento)参考departamentos(id);