为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。 【DM版本】:dm8 【操作系统】:windows 【CPU】: 【问题描述】*:ALTER TABLE test DROP FOREIGN KEY test_fk;mysql中的删除外键的语法对应达梦的是什么呢
详细可以查阅SQL使用手册https://eco.dameng.com/document/dm/zh-cn/pm/definition-statement.html
ALTER TABLE test drop constraint test_fk;
alter table 模式名.表名 drop constraint 外键约束名; 或者图形化界面
详细可以查阅SQL使用手册https://eco.dameng.com/document/dm/zh-cn/pm/definition-statement.html
ALTER TABLE test drop constraint test_fk;