Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以举例说明如何在sql中实现功能依赖关系。
我在某处读到可以使用断言来实现功能依赖。但是这些是如何实现的,任何人都可以举一个例子。此外,如何在 Oracle 中实现 FD,因为无法在 oracle 中创建断言。
主键和唯一约束是 SQL 中如何实现功能依赖的两个示例。
功能依赖:
DEPTNO -> DNAME, LOC DNAME -> DEPTNO, LOC
SQL实现:
create table dept (deptno integer PRIMARY KEY, dname varchar2(10) UNIQUE, loc varchar2(10));