我正在研究 H2 数据库,我遇到了这个问题 - 删除一个约束很好,我可以使用这个语句
alter table customer drop constraint if exists fk_customer_order ;
添加一个约束也很好,我可以使用这个语句。
alter table customer add constraint fk_customer_order foreign key (order_id) references order (id) on delete cascade on update cascade;
但问题是,在客户表中我有更多的外键,我想在一个查询语句中删除它们。像这样的东西
alter table customer drop constraint fk_customer_order
drop constraint fk_customer_information
drop constraint ....
但这似乎不能在 h2 数据库中完成,任何人都可以告诉我是否可以通过 1 个 sql 语句添加或删除多约束?欢迎任何答案,我非常感谢。