?? rules.html
字號:
<html>
<head>
<title>Rules for Tables in the School Database</title>
<body bgcolor="#FFFFEE">
<h1>Business Rules</h1>
<pre>
Advisors
AdvGradeLevel
Required
Rule
IN ('Freshman', 'Sophomore', 'Junior', 'Senior')
Text
Grade level must be Freshman, Sophomore, Junior, or Senior
Courses
CourseDesc
Required
Faculty
FacFirst
Required
FacLast
Required
Instructors
n/a
Students
StFirst
Required
StLast
Required
Table
Rule
IIf(
(
(Not IsNull(StAddress)) Or
(Not IsNull(StCity)) Or
(Not IsNull(StState)) Or
(Not IsNull(StZIP))
),
(
(Not IsNull(StAddress)) And
(Not IsNull(StCity)) And
(Not IsNull(StState)) And
(Not IsNull(StZIP))
),
True
)
Text
If provided, the address must be complete.
Note: Because you can enter only a single expression, this must be
constructed using IIf statements.
</pre>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -