实现 RDBMS 的 DDL 无法确保的数据库约束
Implementing database constraints that are not possible to ensure with the DDL of RDBMS
这是一道作业题,但对我来说不是特别有意义:
"How will you implement the constraints for your database that will not be possible to ensure with the mechanism of the Data Definition Language of RDBMS"。
创建表时,不是所有的约束都由 DDL 定义吗?
Aren't all constraints defined by the DDL when you're creating the
tables?
仅当您将 "constraints" 解释为可以通过所选 RDBMS 中的 CONSTRAINT 定义处理的限制时。
按照我对问题含义的解释,表述问题的更好方式可能是:
对于简单约束无法处理的过于复杂的数据完整性规则,您将如何实施?
这是一道作业题,但对我来说不是特别有意义:
"How will you implement the constraints for your database that will not be possible to ensure with the mechanism of the Data Definition Language of RDBMS"。
创建表时,不是所有的约束都由 DDL 定义吗?
Aren't all constraints defined by the DDL when you're creating the tables?
仅当您将 "constraints" 解释为可以通过所选 RDBMS 中的 CONSTRAINT 定义处理的限制时。
按照我对问题含义的解释,表述问题的更好方式可能是: 对于简单约束无法处理的过于复杂的数据完整性规则,您将如何实施?