询问几个句子的中文意思 关于SQL SEVER的

来源:百度知道 编辑:UC知道 时间:2024/06/10 18:32:42
normal form
直译是标准表格.但在SQL sever中是什么?
all nonkey columns must be fully dependent on the primary key. In other words, each table must store data about only one subject.
还有,这句话中的NONKEY这个词不知道。
DenormalizationPurposely Violating the Rules
指什么?
Child rows cannot be added for parent rows that do not exist. In other words, an order cannot be added for a nonexistent customer.

我要怎么理解这句话?
SQL Server Express has two wonderful features. One is called Cascade Update, and the other is called Cascade Delete.
指什么?
有点麻烦~
先谢谢了~

normal form意指:规范模式。
在数据库设计中,表的设计优化有几层标准
First Normal Form--第一范式
Second Normal Form--第二范式
Third Normal Form--第三范式等

nonkey是指非关键字。

不能为不存在的父行增加子行,换句话说,不能为不存在的客户增加订单

SQL Server Express的有两个优秀的功能。一个是级联更新,另一个是级联删除。 比如说:当客户A删除时,级联删除就会把A的所有订单全删除了,如果不要求级联删除,则只删客户A,而不删除它的订单。
你看的书是关于数据库设计的书,你最好找一些关于数据库原理的中文书来先看,搞懂了它们说的大致意思,再看英文书。
关于数据库的设计是一门比较深的学问。它有很多理论。有一些概念的确很难懂。