数据库系统概论

Size: px
Start display at page:

Download "数据库系统概论"

Transcription

1 第 2 章 关 系 数 据 库 孟 小 峰 xfmeng@ruc.edu.cn 信 息 学 院 2014/3/4

2 上 节 课 关 系 完 整 性 实 体 完 整 性 / 主 码 完 整 性 参 照 完 整 性 / 外 码 完 整 性 函 数 依 赖 用 户 定 义 完 整 性 关 系 代 数 基 本 运 算 : 选 择, 投 影, 笛 卡 尔 积, 并, 差 导 出 运 算 : 交, 连 接, 除

3 Additional Relational Algebra Operators The new operators are all derivable from the six operators we have introduced previously 交 set intersection Format: R1 R2 Semantics: Return all tuples that belong to both R1 and R2. Formally: R1 R2 = { t t R1 and t R2 } Derivation from existing operators: R1 R2 = R1 - (R1 - R2) = R2 - (R2 - R1)

4 交 set intersection (2) Example: R1 R2 R1 - R2 A B C A B C A B C a1 b1 c1 a0 b0 c0 a3 b3 c3 a2 b2 c2 a1 b1 c1 A B C R1 R2 a3 b3 c3 a2 b2 c2 a1 b1 c1 a4 b4 c4 a2 b2 c2 R1 R2 = R1 - (R1 - R2)

5 join Format: R1 连 接 Join (1) join-condition R2 Semantics: Return all tuples in R1 R2 which satisfy the join condition. Derivation from existing operators: R1 join-condition R2 = σ join-condition (R1 R2) Format of join condition: R1.A op R2.B R1.A1 op R2.B1 and R1.A2 op R2.B2...

6 连 接 Join (2) Example: Find the names of all employees and their department locations. Employees: SSN Name Age Dept-Name John 34 Sales Mary 42 Service Bill 39 null Departments: Name Location Manager Sales Binghamton Bill Inventory Endicott Charles Service Vestal Maria

7 连 接 Join (3) π Employees.Name, Location ( Employees Dept-Name = Departments. Name Departments) Result Name Location John Binghamton Mary Vestal

8 连 接 Join (4) Example: Find the names of all employees who earn more than his/her manager. Employees: SSN Name Salary Manager-SSN John 34k Bill 40k null Mary 38k null Mike 41k π Employees.Name (Employees Employees.Manager-SSN = EMP2.SSN and Employees.Salary > EMP2.Salary ρ EMP2 (Employees))

9 等 值 连 接 Equijoin Definition: A join is called an equijoin if only equality operator is used in all join conditions. R1 R2 R1 R1.B = R2.B R2 A B B C A R1.B R2.B C a b b c a b b c d b c d d b b c b c a d b c c d Most joins in practice are equijoins.

10 自 然 连 接 Natural Join (1) Definition: A join between R1 and R2 is a natural join if There is an equality comparison between every pair of identically named attributes from the two relations. Among each pair of identically named attributes from the two relations, only one remains in the result. Natural join is denoted by with no join conditions explicitly specified.

11 自 然 连 接 Natural Join (2) Example: R1(A, B, C) R2(A, C, D) has attributes (A, B, C, D) in the result. Questions: (1) How to express natural join in terms of equijoin and other relational operator? R1 R2 = π R1.A, B, R2.C, D(R1 R1.A = R2.A and R1.C = R2.C R2)

12 自 然 连 接 Natural Join (3) (2) If there are no common attributes between R1 and R2, what is R1 R2? R1(A, B, C), R2(D, E) R1 R2 = π A, B, C, D, E (R1 φ R2) = π A, B, C, D, E (R1 R2) = R1 R2

13 A motivating example: 除 Division (1) Emp# Proj# Proj# Which employee participates in all projects? {1}

14 division Format: R1 R2 除 Division (2) Restriction: Every attribute in R2 is in R1. Consider: R1(A1,..., An, B1,..., Bm) R2(B1,..., Bm) Let T = π A1,..., An (R1). Semantics: Return those tuples in T such that for every tuple t returned, the concatenation of t with every tuple in R2 is in R1.

15 除 Division (3) E.g.: R1 R2 T R1 R2 A B C D C D A B A B a b c d c d a b a b a b e f e f b c e d b c e f e d e d c d e d e f a b d e T = π A1,..., An (R1) Derivation from existing operators: R1 R2 = T - π A1,..., An (T R2 - R1).

16 除 (Division) 除 运 算 的 含 义 给 定 关 系 R (X,Y) 和 S (Y,Z), 其 中 X,Y,Z 为 属 性 组 R 中 的 Y 与 S 中 的 Y 可 以 有 不 同 的 属 性 名, 但 必 须 出 自 相 同 的 域 集 R 与 S 的 除 运 算 得 到 一 个 新 的 关 系 P(X),P 是 R 中 满 足 下 列 条 件 的 元 组 在 X 属 性 列 上 的 投 影 : 元 组 在 X 上 分 量 值 x 的 象 集 Y x 包 含 S 在 Y 上 投 影 的 集 合 R S = {t r [X] t r R π Y (S) Y x } Y x :x 在 R 中 的 象 集,x = t r [X]

17 除 (Division)( 续 ) 除 操 作 是 同 时 从 行 和 列 角 度 进 行 运 算 举 例 [ 例 6] R: 图 2.7(a);S: 图 2.7(b); R S: 图 2.7(c) R A B C a1 b1 c2 S B C D b1 c2 d1 a2 b3 c7 b2 c1 d1 a3 b4 c6 b2 c3 d2 a1 b2 c3 a4 b6 c6 a2 b2 c3 a1 b2 c1

18 除 (Division)( 续 ) 分 析 : 在 关 系 R 中,A 可 以 取 四 个 值 {a 1,a 2,a 3,a 4 } 其 中 : a 1 的 象 集 为 {(b 1,c 2 ),(b 2,c 3 ),(b 2,c 1 )} a 2 的 象 集 为 {(b 3,c 7 ),(b 2,c 3 )} a 3 的 象 集 为 {(b 4,c 6 )} a 4 的 象 集 为 {(b 6,c 6 )} S 在 (B,C) 上 的 投 影 为 {(b 1,c 2 ),(b 2,c 1 ),(b 2,c 3 ) } 显 然 只 有 a 1 的 象 集 (B,C) a1 包 含 了 S 在 (B,C) 属 性 组 上 的 投 影, 所 以 R S ={a 1 }

19 除 (Division)( 续 ) A sno s1 s1 s1 s1 s2 s2 s3 s4 s4 pno p1 p2 p3 p4 p1 p2 P2 p2 p4 pno p2 pno P2 p4 pno P1 p2 p4 B1 B2 B3 sno s1 s2 s3 s4 sno s1 s4 sno s1 A B1 A B2 A B3

20 除 (Division)( 续 ) 除 的 实 际 含 义 : 有 一 个 现 实 意 义 的 集 合, 希 望 在 另 一 个 集 合 中 找 出 包 含 该 集 合 的 元 组 集 例, 找 出 选 修 了 所 有 课 程 的 学 生 所 有 课 程 学 生 学 生 所 有 课 程 例, 找 出 选 修 了 所 有 张 三 所 选 课 的 学 生 张 三 所 选 课 学 生 学 生 张 三 所 选 课

21 Division (4) Example: Find the names and GPAs of all students who take all courses taken by a student with SSN = Students (SSN, Name, GPA) Takes (SSN, Course#) Step 1: Find all courses that are taken by the student with SSN = TEMP1 := π Course# (σ SSN = ` (Takes))

22 Division (5) Step 2: Find the SSNs of those students who take all courses in TEMP1. TEMP2 := Takes TEMP1 Step 3: Obtain the final result. RESULT := π Name, GPA (Students TEMP2)

23 Division (5) Find the names of employees who participate in every project. Employees(SSN, Name, Department) Projects(Proj#, Name, Budget) Participation(SSN, Proj#) π Name (Employees Proj# (Projects))) (Participation π

24 Relational Algebra Example (1) Many relational algebra queries can be expressed using selection, projection and join operators by following steps: (1) Determine necessary relations to answer the query. If R1,..., Rn are all the relations needed, P are all conditions and T are all (target) attributes to be output, then form the initial query: π T (σ P (R1... Rn))

25 Relational Algebra Example (2) (2) If P contains a condition, say Ci, that involves only attributes in Ri, replace Ri by σ Ci (Ri) and remove Ci from P. (3) If P contains a condition, say C, that involves attributes from both Ri and Rj, replace Ri Rj by Ri C Rj (or a natural join) and remove C from P. Be careful when there are two or more joins.

26 Relational Algebra Example (3) Consider the following database schema: Students(SSN, Name, GPA, Age, Dept-Name) Enrollment(SSN, Course#, Grade) Courses(Course#, Title, Dept-Name) Departments(Name, Location, Phone) Query: Find the SSNs and names of all students who are CS major and who take CS532.

27 Relational Algebra Example (4) (1) Relations Students and Enrollment are needed. T = { Students.SSN, Students.Name } P = { Students.Dept-Name = CS, Enrollment.Course# = CS532, Students.SSN = Enrollment.SSN } The initial relational algebra query is: π Students.SSN, Name (σ Dept-Name = `CS and Course# = `CS532 and Students.SSN = Enrollment.SSN (Students Enrollment))

28 Relational Algebra Example (5) (2) Replace Students by σ Dept-Name = `CS (Students) and Enrollment by σ Course# = `CS532 (Enrollment). Remove the two conditions from the initial expression. (3) Replace Students Enrollment by Students Enrollment and remove Students.SSN = Enrollment.SSN from the initial expression. The final expression: π Students.SSN, Name (σ Dept-Name = `CS (Students) σ Course# = `CS532 (Enrollment))

29 Relational Algebra Example (6) Cartesian product is most expensive, followed by non-equijoin, followed by equijoin and natural join, followed by selection and projection. Query: Find the SSN and name of each student who is CS major together with the titles of the courses taken by the student.

30 Relational Algebra Example (7) π Students.SSN, Name, Title (σ Students.Dept-Name = `CS and Students.SSN = Enrollment.SSN and Enrollment.Course# = Courses.Course# (Students Enrollment Courses)) = π Students.SSN, Name, Title ((σ Students.Dept-Name = `CS (Students) Enrollment) Enrollment.Course# = Courses.Course# Courses) = π Students.SSN, Name, Title (σ Students.Dept-Name = `CS (Students) (Enrollment Courses) ) Students.SSN = Enrollment.SSN

31 Outerjoin (1) R1 R2 R1 R2 A B C C D E A B C D E a1 b1 c1 c1 d1 e1 a1 b1 c1 d1 e1 a4 b3 c2 c6 d3 e2 The second tuples of R1 and R2 are not present in the result (called dangling tuples). Applications exist that require to retain dangling tuples.

32 Outerjoin (2) 10. o --- outer join Format: R1 o R2 Semantics: like join except (a) it retains dangling tuples from both R1 and R2; (b) it uses null to fill out missing entries. R1 o R2 A B C D E a1 b1 c1 d1 e1 a4 b3 c2 null null null null c6 d3 e2

33 Left Outerjoin and Right Outerjoin left outer join Format: R1 R2 Semantics: like outerjoin but retains only dangling tuples of the relation on the left right outer join Format: R1 R2 Semantics: like outerjoin but retains only dangling tuples of the relation on the right.

34 Relational Algebra Summary (1) Relational algebra operators: Fundamental operators: σ C (R), π A (R), ρ S (R), R1 R2, R1 - R2, R1 R2 Other traditional operators: R1 R2, R1 C R2, R1 R2 New operators: R1 o R2, R1 R2, R1 R2

35 Relational Algebra Summary (2) Some identities: σ C1 (σ C2 (R)) = σ C2 (σ C1 (R)) = σ C1 and C2 (R) π L1 (π L2 (R)) = π L1 (R), if L1 L2 R1 R2 = R2 R1 R1 (R2 R3) = (R1 R2) R3 R1 R2 = R2 R1 R1 (R2 R3) = (R1 R2) R3 Either both joins are natural or are non-natural

36 Relational Algebra Operations 27

37 Relational Algebra Operations 28

38 第 二 章 关 系 数 据 库 2.1 关 系 模 型 概 述 2.2 关 系 数 据 结 构 2.3 关 系 的 完 整 性 约 束 2.4 关 系 代 数 2.5 关 系 演 算 2.6 小 结 关 系 的 数 据 操 作

39 关 系 演 算 Relational Calculus Relational calculus query specifies what is to be retrieved rather than how to retrieve it. No description of how to evaluate a query. Based on a branch of symbolic logic called predicate calculus( 谓 词 演 算 ). When applied to databases, relational calculus is in two forms: tuple-oriented ( 元 组 )and domainoriented( 域 ). 54

40 关 系 演 算 Relational Calculus In first-order logic or predicate calculus, a predicate is a truth-valued function with arguments. When we substitute values for the arguments, the function yields an expression, called a proposition, which can be either true or false. 55

41 关 系 演 算 Relational Calculus If a predicate contains a variable, as in x is a member of students, there must be a range for x. When we substitute some values of this range for x, the proposition may be true; for other values, it may be false. If P is a predicate, then we write the set of all x such that P is true for x, as {x P(x)} Predicates can be connected using (AND), (OR), and (NOT) 56

42 元 组 关 系 演 算 Tuple-oriented Relational Calculus Interested in finding tuples for which a predicate is true. Based on use of tuple variables. Tuple variable is a variable that ranges over a named relation: that is, a variable whose only permitted values are tuples of the relation. 57

43 元 组 关 系 演 算 Tuple-oriented Relational Calculus To specify the range of a tuple variable S as the Student relation. RANGE OF S IS Student To find the set of all tuples S such that P(S) is true. {S P(S)} 58

44 元 组 关 系 演 算 Tuple-oriented Relational Calculus To find the Sno, Sname, Ssex, Sage, Sdept of all student with age more than 20, we write RANGE OF S IS Students {S S.sage > 20} S.sage means the value of the Sage attribute for the tuple S. 59

45 元 组 关 系 演 算 Tuple-oriented Relational Calculus To find a particular attribute, such as name, we write. RANGE OF S IS Students {S.sname S.age > 20} 60

46 元 组 关 系 演 算 Tuple-oriented Relational Calculus We can use two quantifiers to tell how many instances the predicate applies to. Existential quantifier ( there exists ) Universal quantifier ( for all ) 61

47 举 例 用 存 在 量 词 的 检 索 [ 例 8] 查 询 选 修 2 号 课 程 的 学 生 名 字 RANGE OF X is SC RANGE OF Y is STUDENT {Y.Sname X(X.Sno=Y.Sno X.Cno='2 } [ 例 9] 查 询 选 修 了 其 直 接 先 行 课 是 6 号 课 程 的 这 样 课 程 的 学 生 号 RANGE OF X is Course RANGE OF Y is SC {Y.Sno X (X.Cno=Y.Cno X.Pcno='6 }

48 举 例 [ 例 10] 查 询 至 少 选 修 一 门 其 先 行 课 为 6 号 课 程 的 学 生 名 字 RANGE OF CX is Course RANGE OF SCX is SC RANGE OF Y is Student {Y.Sname SCX (SCX.Sno=Y.Sno CX (CX.Cno=SCX.Cno CX.Pcno='6')} 可 将 元 组 关 系 演 算 公 式 变 换 为 前 束 范 式 的 形 式 : {Y.Sname SCX CX(SCX.Sno=Y.Sno CX.Cno=SCX.Cno CX.Pcno='6 }

49 举 例 带 有 多 个 关 系 的 表 达 式 的 检 索 [ 例 11] 查 询 成 绩 为 90 分 以 上 的 学 生 名 字 与 课 程 名 字 RANGE OF SCX is SC RANGE OF Y is Student RANGE OF Z is Course {(Y.Sname,Z.Cname) SCX (SCX.Grade 90 SCX.Sno=Y.Sno Z.Cno=SCX.Cno}

50 举 例 用 两 种 量 词 的 检 索 [ 例 13] 查 询 选 修 了 全 部 课 程 的 学 生 姓 名 RANGE OF CX is Course RANGE OF SCX is SC RANGE OF SX is Student {XS.Sname CX SCX (SCX.Sno=XS.Sno SCX.Cno=CX.Cno) }

51 除 (Division) R S: 另 一 种 定 义 t 属 于 R S, 当 且 仅 当 满 足 以 下 两 个 条 件 同 时 成 立 : 1)t 在 π R-S (r) 中 2) 对 s 中 的 每 一 个 元 组 t s, 在 r 中 都 有 元 组 t r 同 时 满 足 以 下 条 件 : t r [S] = t s [S] and t r [R-S] = t R1 R2 = T - π A1,..., An (T R2 - R1).

52 Relational algebra vs. Tuple-oriented Relational Calculus P66-67

53 2.5.1 元 组 关 系 演 算 语 言 ALPHA 一 种 典 型 的 元 组 关 系 演 算 语 言, 但 没 有 实 际 实 现 由 E.F.Codd 提 出 INGRES 所 用 的 QUEL 语 言 是 参 照 ALPHA 语 言 研 制 的 语 句 检 索 语 句 :GET 更 新 语 句 :PUT,HOLD,UPDATE,DELETE,DROP

54 检 索 操 作 语 句 格 式 : GET 工 作 空 间 名 [( 定 额 )]( 表 达 式 1) [: 操 作 条 件 ] [DOWN/UP 表 达 式 2] 定 额 : 规 定 检 索 的 元 组 个 数 格 式 : 数 字 表 达 式 1: 指 定 语 句 的 操 作 对 象 格 式 : 关 系 名 关 系 名. 属 性 名 元 组 变 量. 属 性 名 集 函 数 [, ] 操 作 条 件 : 将 操 作 结 果 限 定 在 满 足 条 件 的 元 组 中 格 式 : 逻 辑 表 达 式 表 达 式 2: 指 定 排 序 方 式 格 式 : 关 系 名. 属 性 名 元 组 变 量. 属 性 名 [, ]

55 检 索 操 作 ( 续 ) [ 例 7] 查 询 信 息 系 学 生 的 名 字 RANGE Student X GET W (X.Sname): X.Sdept='IS'

56 Domain-oriented Relational Calculus Uses variables that take values from domains instead of tuples of relations. If P(d 1, d 2,..., d n ) stands for a predicate with variables d 1, d 2,..., d n, then {d 1, d 2,..., d n P(d 1, d 2,..., d n )} Means the set of all domain variables d 1, d 2,..., d n for which the predicate, or formula, P(d 1, d 2,..., d n ) is true. 71

57 Domain-oriented Relational Calculus We often test for a membership condition, to determine whether values belong to a relation. The expression R(x, y) evaluates to true if and only if there is a tuple in relation R with values x, y for its two attributes. 72

58 Example - Domain-oriented Relational Calculus Find the names of all managers who earn more than 25,000. {fname, lname position, salary (Staff (lname, position, salary) position = Manager salary > 25000)} Each attribute has a (variable) name. Condition Staff (lname, position, salary) ensures domain variables are restricted to attributes of same tuple. 73

59 域 关 系 演 算 语 言 QBE 一 种 典 型 的 域 关 系 演 算 语 言 由 M.M.Zloof 提 出 的 QBE 1978 年 在 IBM370 上 得 以 实 现 QBE 也 指 此 关 系 数 据 库 管 理 系 统 QBE:Query By Example 基 于 屏 幕 表 格 的 查 询 语 言 查 询 要 求 : 以 填 写 表 格 的 方 式 构 造 查 询 即 : 用 示 例 元 素 ( 域 变 量 ) 来 表 示 查 询 结 果 可 能 的 情 况 查 询 结 果 : 以 表 格 形 式 显 示

60 域 关 系 演 算 语 言 QBE ( 续 ) QBE 操 作 框 架 关 系 名 属 性 名 操 作 条 件 域 值 或 查 询 条 件

61 一 检 索 操 作 操 作 步 骤 为 : (1) 用 户 提 出 要 求 ; (2) 屏 幕 显 示 空 白 表 格 ; (3) 用 户 在 最 左 边 一 栏 输 入 要 查 询 的 关 系 名, 例 如 Student; student

62 检 索 操 作 ( 续 ) (4) 系 统 显 示 该 关 系 的 属 性 名 ; Student Sno Sname Ssex Sage Sdept (5) 用 户 在 上 面 构 造 查 询 要 求 Student Sno Sname Ssex Sage Sdept P. T AO. C

63 检 索 操 作 ( 续 ) 构 造 查 询 的 几 个 要 素 : T: 示 例 元 素, 即 域 变 量 一 定 要 加 下 划 线 示 例 元 素 是 这 个 域 中 可 能 的 一 个 值, 它 不 必 是 查 询 结 果 中 的 元 素 例 如 要 求 信 息 系 的 学 生, 只 要 给 出 任 意 的 一 个 学 生 名 即 可, 而 不 必 真 是 信 息 系 的 某 个 学 生 名 C: 查 询 条 件, 不 用 加 下 划 线 可 使 用 比 较 运 算 符 >,,<,,= 和 其 中 = 可 以 省 略 P.: 打 印 操 作 符, 指 定 查 询 结 果 所 含 属 性 列 AO./DO.: 排 序 要 求

64 检 索 操 作 ( 续 ) (6) 屏 幕 显 示 查 询 结 果 Student Sno Sname Ssex Sage Sdept 李 勇 张 立 C

65 关 系 演 算 与 关 系 代 数 关 系 演 算 是 描 述 性 (descriptive) 形 式 的, 而 关 系 代 数 是 说 明 性 (prescriptive) 形 式 的 关 系 演 算 描 述 了 问 题 是 什 么, 而 关 系 代 数 说 明 了 解 决 问 题 的 过 程 或 者, 可 以 说, 关 系 代 数 是 过 程 化 的 ( 诚 然, 是 高 级 的, 但 仍 然 是 过 程 化 的 ); 而 关 系 演 算 是 非 过 程 化 的 上 述 区 别 仅 仅 是 表 面 上 的 实 际 上, 关 系 代 数 和 关 系 演 算 在 逻 辑 上 是 等 价 的 即 每 一 个 代 数 表 达 式 都 有 一 个 等 价 的 演 算 表 达 式, 每 一 个 演 算 表 达 式 都 有 一 个 等 价 的 代 数 表 达 式 两 者 是 一 一 对 应 关 系 所 以 两 者 的 区 别 仅 仅 是 形 式 上 的 可 以 证 明, 关 系 演 算 更 接 近 自 然 语 言, 而 关 系 代 数 更 像 程 序 语 言 特 别 地, 没 有 哪 一 种 方 法 真 正 地 比 另 外 一 种 更 加 非 过 程 化

66 比 较 举 例 元 组 关 系 演 算 域 关 系 演 算 查 询 选 修 了 全 部 课 程 的 学 生 号 码 和 姓 名 RANGE OF CX is Course RANGE OF SCX is SC RANGE OF SX is Student {XS.Sname, XS.Sno CX SCX (SCX.Sno=XS.Sno SCX.Cno=CX.Cno) } {Sname, Sno sno,sname(student(sno,sname) ) Cno( Course(cname, cno) =>SC(sno,cno) } 关 系 代 数 π Sno,Cno (SC) π Cno (Course) π Sno,Sname (Student) 74

67 关 系 演 算 与 关 系 代 数 Codd 认 为, 至 少 关 系 代 数 跟 关 系 演 算 一 样, 具 有 强 大 的 表 达 能 力 ( 参 看 [6.1]) 他 给 出 了 一 算 法 证 明 了 这 一 点 这 一 算 法 叫 Codd 简 约 算 法 通 过 这 个 算 法, 任 意 一 个 演 算 表 达 式 都 可 以 简 约 为 在 语 法 上 等 价 的 代 数 表 达 式 如 果 一 门 语 言 具 备 了 关 系 演 算 这 样 的 功 能, 那 么 可 以 说 是 满 足 关 系 完 备 性 (relational complete) 的 由 于 关 系 代 数 具 备 关 系 完 备 性, 故 为 了 表 现 某 一 给 定 语 言 L 具 备 此 特 征, 就 必 须 充 分 表 现 : (a)l 包 括 类 似 八 个 代 数 操 作 符 的 操 作 ( 实 际 上, 要 充 分 表 现 关 系 代 数 的 五 个 基 本 的 操 作 ), (b)l 语 言 的 任 一 操 作 符 的 操 作 数 可 能 是 L 的 任 一 表 达 SQL 是 用 这 种 方 式 表 示 关 系 完 备 的 语 言 的 一 个 例 子

68 Other Languages Transform-oriented languages are non-procedural languages that use relations to transform input data into required outputs (e.g. SQL). Graphical languages provide the user with a picture or illustration of the structure of the relation. The user fills in an example of what is wanted and the system returns the required data in that format (e.g QBE). Natural Language Interface (NChiql) 76

69 第 二 章 作 业 3/1 习 题 1,2,3 3/4 习 题 4,5,6,7 思 考 题 : 补 充 作 业 dbhw2 交 作 业 时 间 :3/11

70 Book Time 阅 读 : 流 失 的 岁 月, 李 新 作 者 敢 说 真 话 实 话, 文 中 揭 露 的 某 些 史 实 在 今 人 看 来 简 直 是 匪 夷 所 思

数据库系统概论

数据库系统概论 数据库系统概论 An Introduction to Database Systems 第三章 SQL 语言 ( 之基本查询部分 ) 2016, 3, 17 上节课 SQL: SQL86,SQL89,SQL92,SQL99 DDL,DML,DCL DDL 基本表, 索引, 视图 CREATE TABLE,CREATE INDEX ALTER TABLE, DROP TABLE, DROP INDEX

More information

Microsoft PowerPoint - 05-SQL3-advanced.ppt

Microsoft PowerPoint - 05-SQL3-advanced.ppt SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

SQL: Interactive Queries (2)

SQL: Interactive Queries (2) SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

数据库系统概论

数据库系统概论 信息学院 2015 级,2017-2~6, 教 2221 数据库系统概论 孟小峰中国人民大学 xfmeng@ruc.edu.cn http://idke.ruc.edu.cn 数据库系统概论 An Introduction to Database Systems 第三章 SQL 语言 ( 之高级查询部分 ) 2017, 3, 21 Replay Time SELECT 语句结构 SELECT FROM

More information

Knowledge and its Place in Nature by Hilary Kornblith

Knowledge and its Place in Nature by Hilary Kornblith Deduction by Daniel Bonevac Chapter 7 Quantified Natural Deduction Quantified Natural Deduction As with truth trees, natural deduction in Q depends on the addition of some new rules to handle the quantifiers.

More information

untitled

untitled http://idc.hust.edu.cn/~rxli/ 1.1 1.2 1.3 1.4 1.5 1.6 2 1.1 1.1.1 1.1.2 1.1.3 3 1.1.1 Data (0005794, 601,, 1, 1948.03.26, 01) (,,,,,) 4 1.1.1 Database DB 5 1.1.1 (DBMS) DDL ( Create, Drop, Alter) DML(

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Explore the impact of emotional factors couples do not

More information

untitled

untitled 數 Quadratic Equations 數 Contents 錄 : Quadratic Equations Distinction between identities and equations. Linear equation in one unknown 3 ways to solve quadratic equations 3 Equations transformed to quadratic

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

untitled

untitled Database System Principle Database System Principle 1 SQL 3.1 SQL 3.2-3.3 3.4 3.5 3.6 Database System Principle 2 3.1 SQL SQL Structured Query Language SQL Database System Principle 3 SQL 3.1.1 SQL 3.1.2

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

Microsoft PowerPoint - STU_EC_Ch02.ppt

Microsoft PowerPoint - STU_EC_Ch02.ppt 樹德科技大學資訊工程系 Chapter 2: Number Systems Operations and Codes Shi-Huang Chen Sept. 2010 1 Chapter Outline 2.1 Decimal Numbers 2.2 Binary Numbers 2.3 Decimal-to-Binary Conversion 2.4 Binary Arithmetic 2.5

More information

1 * 1 *

1 * 1 * 1 * 1 * taka@unii.ac.jp 1992, p. 233 2013, p. 78 2. 1. 2014 1992, p. 233 1995, p. 134 2. 2. 3. 1. 2014 2011, 118 3. 2. Psathas 1995, p. 12 seen but unnoticed B B Psathas 1995, p. 23 2004 2006 2004 4 ah

More information

Ted Codd s Relational Model Derivability, Redundancy, and Consistency of Relations Stored in Large Data Banks, IBM Research Report RJ 599 ( August 19t

Ted Codd s Relational Model Derivability, Redundancy, and Consistency of Relations Stored in Large Data Banks, IBM Research Report RJ 599 ( August 19t Topic 2: Semantic Data Model Ted Codd s Relational Model Derivability, Redundancy, and Consistency of Relations Stored in Large Data Banks, IBM Research Report RJ 599 ( August 19th, 1969) A Relational

More information

Microsoft Word - A200811-773.doc

Microsoft Word - A200811-773.doc 语 言 模 型 在 高 校 保 研 工 作 中 的 应 用 王 洋 辽 宁 工 程 技 术 大 学 理 学 院 信 息 与 计 算 科 学, 辽 宁 阜 新 (3000) E-mail: ben.dan000 @63.com 摘 要 : 问 题 重 述 : 模 糊 性 数 学 发 展 的 主 流 是 在 它 的 应 用 方 面, 其 中 模 糊 语 言 模 型 实 现 了 人 类 语 言 的 数 学

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

习题1

习题1 习 题 1 数 据 库 系 统 基 本 概 念 1.1 名 词 解 释 DB DB 是 长 期 存 储 在 计 算 机 内 有 组 织 的 统 一 管 理 的 相 关 数 据 的 集 合 DB 能 为 各 种 用 户 共 享, 具 有 较 小 冗 余 度 数 据 间 联 系 紧 密 而 又 有 较 高 的 数 据 独 立 性 等 特 点 DBMS 是 位 于 用 户 与 操 作 系 统 之 间 的

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

數學導論 學數學 前言 學 學 數學 學 數學. 學數學 論. 學,. (Logic), (Set) 數 (Function)., 學 論. 論 學 數學.,,.,.,., 論,.,. v Chapter 1 Basic Logic 學 數學 學 言., logic. 學 學,, 學., 學 數學. 數學 論 statement. 2 > 0 statement, 3 < 2 statement

More information

ebook 165-6

ebook 165-6 6 6.1 C o d d 5.1, 6.1 3 r e s t r i c t p r o j e c t j o i n 6. 1 C o d d 6-1 8 o r i g i n a l C o d d 8 8 6. 10 C o d d 8 6-1 8 1) u n i o n i n t e r s e c t i o n d i ff e r e n c e Cartesian product

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

Untitiled

Untitiled 目 立人1 2011 录 目 录 专家视点 权利与责任 班主任批评权的有效运用 齐学红 3 德育园地 立 沿着鲁迅爷爷的足迹 主题队活动案例 郑海娟 4 播下一颗美丽的种子 沿着鲁迅爷爷的足迹 中队活动反思 郑海娟 5 赠人玫瑰 手有余香 关于培养小学生服务意识的一些尝试和思考 孙 勤 6 人 教海纵横 2011 年第 1 期 总第 9 期 主办单位 绍兴市鲁迅小学教育集团 顾 问 编委会主任 编

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 以 系 統 動 力 學 建 構 美 食 餐 廳 異 國 麵 坊 之 管 理 飛 行 模 擬 器 研 究 生 : 簡 蓮 因 撰 指 導 教 授 : 楊 碩 英 博 士 中 華 民 國 九 十 七 年 七 月 致 謝 詞 寫 作 論 文 的 過 程 是 一 段 充 滿 艱 辛 與 淚 水 感 動 與 窩 心 的 歷 程, 感 謝 這 一

More information

1對外華語文詞彙教學的策略研究_第三次印).doc

1對外華語文詞彙教學的策略研究_第三次印).doc 37 92 1 16 1 2 3 4 5 6 7 8????? 9????????? 10???????????????????? 11? 12 13 14 15 16 The Strategy Research of Teaching Chinese as a Second Language Li-Na Fang Department of Chinese, National Kaohsiung

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

Microsoft Word - 18-p0402-c3.doc

Microsoft Word - 18-p0402-c3.doc 第 14 卷 第 3 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.14 No3 2008 年 6 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Jun 2008 肺 病 隐 喻 与 性 别 身 份 建 构 中 国 现 代 文 学 中 的 肺 病 意 象 分 析 王 冬 梅 ( 枣 庄 学 院 中 文 系, 山 东 枣 庄,277160) 摘 要

More information

I

I The Effect of Guided Discovery on The Learning Achievement and Learning Transfer of Grade 5 Students in Primary Schools I II Abstract The Effect of Guided Discovery on The Learning Achievement And Learning

More information

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873>

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873> 中 正 漢 學 研 究 2012 年 第 一 期 ( 總 第 十 九 期 ) 2012 年 6 月 頁 111~134 國 立 中 正 大 學 中 國 文 學 系 111 從 哀 傷 到 哀 而 不 傷 : 陳 子 昂 與 張 九 齡 的 感 遇 詩 對 比 研 究 * 丁 涵 摘 要 在 中 國 古 典 文 學 語 境 中, 一 個 主 題 的 奠 立 往 往 需 要 歷 時 彌 久, 而 這 本

More information

数据分析技术介绍

数据分析技术介绍 DW OLAP DM ,,, :, DW OLAP DM DW OLAP DM DW OLAP DM 80 " "William H.Inmon Data mart " " Meta Data ( ) ETL ETL Extract Transform Cleansing Load ETL Oracle Oracle (CWM) (OEM) 9i Application Server 9i

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特

參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特 WE ARE BOY S BRIGADE 參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特 別 之 處 如 控 制 時 間 及 人 流 方 面, 香

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

% % % % % % ~

% % % % % % ~ 1001-5558 2015 03-0021-16 2010 C91 A 2014 5 2010 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 2010 2010 2181.58 882.99 40.47% 1298.59 59.53% 2013 2232.78 847.29 37.95% 1385.49 62.05% 1990

More information

沒有投影片標題

沒有投影片標題 Knowledge Information Database KID Curriculum Series Frank S.C. Tseng (http://www2.nkfust.edu.tw/~imfrank) 1 11.1 11.2 1NF 2NF 3NF BCNF 11.3 (Multi-Valued Dependency) 11.4 4NF ( ) 11.5 5NF (PJ/NF) 11.6

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

國 立 屏 東 教 育 大 學 中 國 語 文 學 系 碩 士 班 碩 士 論 文 國 小 國 語 教 科 書 修 辭 格 分 析 以 南 一 版 為 例 指 導 教 授 : 柯 明 傑 博 士 研 究 生 : 鄺 綺 暖 撰 中 華 民 國 一 百 零 二 年 七 月 謝 辭 寫 作 論 文 的 日 子 終 於 畫 下 了 句 點, 三 年 前 懷 著 對 文 學 的 熱 愛, 報 考 了 中

More information

Microsoft Word - 口試本封面.doc

Microsoft Word - 口試本封面.doc 國 立 屏 東 教 育 大 學 客 家 文 化 研 究 所 碩 士 論 文 指 導 教 授 : 劉 明 宗 博 士 台 灣 客 家 俗 諺 中 的 數 詞 研 究 研 究 生 : 謝 淑 援 中 華 民 國 九 十 九 年 六 月 本 論 文 獲 行 政 院 客 家 委 員 會 99 度 客 家 研 究 優 良 博 碩 論 文 獎 助 行 政 院 客 家 委 員 會 獎 助 客 家 研 究 優 良

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

2015年下半年全国教师资格笔试《地理学科知识与教学能力》备考指导

2015年下半年全国教师资格笔试《地理学科知识与教学能力》备考指导 2016 年 上 半 年 全 国 教 师 资 格 统 考 英 语 学 科 知 识 与 教 学 能 力 高 分 攻 略 中 公 教 育 教 师 考 试 研 究 院 制 初 级 中 学 一 考 情 综 述 通 过 分 析 真 题, 可 以 发 现 在 英 语 学 科 知 识 和 教 学 能 力 ( 初 中 英 语 ) 笔 试 中, 英 语 教 学 知 识 和 教 学... 设 计 能 力... 所 占

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

100學年度大學推甄申請面試題庫

100學年度大學推甄申請面試題庫 101 學 年 度 大 學 推 甄 申 請 面 試 題 庫 政 治 大 學 斯 拉 夫 語 文 學 系 5 阿 拉 伯 語 文 學 系 6 國 防 大 學 管 理 學 院 資 訊 管 理 學 系 7 運 籌 管 理 學 系 9 中 央 大 學 中 文 系 10 台 灣 師 範 大 學 歷 史 系 11 特 教 系 12 彰 化 師 範 大 學 中 文 系 13 國 防 理 工 學 院 14 國 立

More information

The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching. Shian-Mou Liau Abstract In 2010, the total nu

The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching. Shian-Mou Liau Abstract In 2010, the total nu * 99 92 * Associate Professor, The General Education Center of Chaoyang University of Technology 155 The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching.

More information

6 4 6 5 5 2 2 3 1 2 3 1 6 6 6 6 5 5 5 2 2 4 126% * * GOLD COAST OFFICE. Cnr 2681 Gold Coast Highway and Elizabeth Avenue, Broadbeach Queensland 4218 PHONE 07 5531 8188 www.emandar.com.au Whilst every

More information

00. - 0-000 0 10 0 00-0 0 11 12 13 14 15 b 16 17 18 19 0 - 20 0 0-0 0 21 22 H.Mead 0-0 - ( ) 23 ( ) 24 ( ) 25 ( ) 26 27 00 0 00 0 28 29 30 31 ( ) 0 0 32 ( ) 33 ( ) 34 ( ) 35 ( ) 36 ( ) ( ) Northrop F.S.C.

More information

Microsoft Word - 012-李若鶯.doc

Microsoft Word - 012-李若鶯.doc 論 莊 子 處 世 哲 學 的 基 本 功 忘 287 國 立 高 雄 師 範 大 學 高 雄 師 大 學 報 2003,15,287-307 論 莊 子 處 世 哲 學 的 基 本 功 忘 ] 李 若 鶯 摘 要 莊 子 哲 學 不 是 理 論 的 思 維 哲 學, 而 是 實 用 的 生 活 哲 學, 是 經 由 觀 照 人 生, 思 考 存 在 本 質, 歸 納 出 的 性 命 對 應 莊 子

More information

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis Chap. 4 Techniques of Circuit Analysis Contents 4.1 Terminology 4.2 Introduction to the Node-Voltage Method 4.3 The Node-Voltage Method and Dependent Sources 4.4 The Node-Voltage Method: Some Special Cases

More information

广 东 应 用 技 术 大 学 研 究 JGDBU 2015-12-25 第 22 卷 第 3 期 1 建 设 中 国 应 用 技 术 大 学 面 临 的 理 论 与 实 践 问 题 中 图 分 类 号 :G642 文 献 标 识 码 :A 文 章 编 号 : 粤 O-L0150283(2015)03-06 基 金 项 目 : 广 东 省 教 育 科 学 十 二 五 规 划 项 目 (2013JK308);

More information

OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) ( ) CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 (

OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) ( ) CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 ( 35 1 2006 48 35-46 OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) (93 5 28 95 1 9 ) 94 1-2 5-6 8-10 94 7 CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 (A 47.5 ) T2 73 (A 46.6 ) 3 CK2 T1 T2 CK1 2006 8 16

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

Microsoft PowerPoint - Lecture7II.ppt

Microsoft PowerPoint - Lecture7II.ppt Lecture 8II SUDOKU PUZZLE SUDOKU New Play Check 軟體實作與計算實驗 1 4x4 Sudoku row column 3 2 } 4 } block 1 4 軟體實作與計算實驗 2 Sudoku Puzzle Numbers in the puzzle belong {1,2,3,4} Constraints Each column must contain

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2 CHAPTER 10 Applications of Digital Signal Processing Wang Weilian wlwang@ynu.edu.cn School of Information Science and Technology Yunnan University Outline Speech Signals Processing Dual-Tone Multifrequency

More information

第三章 国内外小组合作学习的应用情况

第三章 国内外小组合作学习的应用情况 摘 要 论 文 题 目 : 小 组 合 作 学 习 在 上 海 高 中 信 息 科 技 教 学 中 的 应 用 专 业 : 现 代 教 育 技 术 学 位 申 请 人 : 朱 翠 凤 指 导 教 师 : 孟 琦 摘 要 小 组 合 作 学 习 是 目 前 世 界 上 许 多 国 家 普 遍 采 用 的 一 种 富 有 创 意 的 教 学 理 论 与 策 略, 其 在 培 养 学 生 的 合 作 精

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Microsoft Word - 論文封面-980103修.doc

Microsoft Word - 論文封面-980103修.doc 淡 江 大 學 中 國 文 學 學 系 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 呂 正 惠 蘇 敏 逸 博 士 博 士 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 研 究 生 : 陳 麗 淑 撰 中 華 民 國 98 年 1 月 淡 江 大 學 研 究 生 中 文 論 文 提 要 論 文 名 稱 : 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 頁 數 :128 校 系 (

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

Oracle Database 10g: SQL (OCE) 的第一堂課

Oracle Database 10g: SQL (OCE) 的第一堂課 商 用 資 料 庫 的 第 一 堂 課 中 華 大 學 資 訊 管 理 系 助 理 教 授 李 之 中 http://www.chu.edu.tw/~leecc 甲 骨 文 俱 樂 部 @Taiwan Facebook 社 團 https://www.facebook.com/groups/365923576787041/ 2014/09/15 問 題 一 大 三 了, 你 為 什 麼 還 在 這

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

ANQING GAOQI PRIMARY SCHOOL 2012 2 2 2012 2012-5-16-1 - 2012 2 13 01 03 07 17 20 24 28 30 36 39 42 44 46 52 54 58 59Unit 6 At a farm Part A Lets Talk 62 64 66 68 72 75 79-2 - 2 3 10 1 2 3 4-3 - 2 5-4 -

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 310-814 Title : Sun Certified MySQL Associate Version : Demo 1 / 12 1.Adam works as a Database Administrator for a company. He creates a table

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

ebook 165-5

ebook 165-5 3 5 6 7 8 9 [ 3. 3 ] 3. 3 S Q L S Q 4. 21 S Q L S Q L 4 S Q 5 5.1 3 ( ) 78 5-1 3-8 - r e l a t i o n t u p l e c a r d i n a l i t y a t t r i b u t e d e g r e e d o m a i n primary key 5-1 3 5-1 S #

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

從詩歌的鑒賞談生命價值的建構

從詩歌的鑒賞談生命價值的建構 Viktor E. Frankl (logotherapy) (will-to-meaning) (creative values) Ture (Good) (Beauty) (experiential values) (attitudinal values) 1 2 (logotherapy) (biological) (2) (psychological) (3) (noölogical) (4)

More information

教務會議議程

教務會議議程 國 立 臺 北 科 技 大 學 10 學 年 度 第 學 期 教 務 會 議 紀 錄 時 間 :10 年 5 月 6 日 ( 星 期 二 ) 下 午 時 正 地 點 : 行 政 大 樓 九 樓 國 際 會 議 廳 主 席 : 余 教 務 長 政 杰 記 錄 : 李 玉 如 列 席 指 導 : 恭 請 姚 校 長 林 副 校 長 蒞 臨 指 導 出 席 人 員 : 黎 文 龍 研 發 長 ( 請 假

More information

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for Doreen Virtue, Ph.D. Charles Virtue C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for a Sign... 27 7.

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10

QQGQ2.E Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 - Power Supplies, Information Technology Equipment Including Ele... 1/10 QQGQ2.E232014 Power Supplies, Information Technology Equipment Including Electrical Business Equipment - Component

More information

Microsoft PowerPoint - 協商談判(成大1040507) [相容模式]

Microsoft PowerPoint - 協商談判(成大1040507) [相容模式] 協 商 談 判 技 巧 國 立 台 南 大 學 行 政 管 理 系 余 明 助 教 授 兼 系 主 任 現 任 國 立 台 南 大 學 行 政 管 理 系 ( 所 ) 教 授 兼 系 主 任 經 歷 國 立 高 雄 應 用 科 技 大 學 人 力 資 源 發 展 研 究 所 副 教 授 長 榮 大 學 國 際 企 業 系 助 理 教 授 慈 愛 國 際 科 技 股 份 有 限 公 司 總 經 理 金

More information

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc Terms and conditions: 1. The extra 5 Membership Rewards points promotion at SOGO ( the Promotion Offer ) is valid for spending only at SOGO Department Store at Causeway Bay and Tsim Sha Tsui within the

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

More information

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S 9 DB2 优化器 DB2 SQL select c1 c2 from ( DB2 )??? DB2?!?, no no DB2 I/O ( transrate overhead ) SQL DML (INSERT UPDATE DELETE) DB2 (access plan) DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( 728 747 ) SQL

More information

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi U17 10220 UDC624 Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candidate:Chen Hao Tutor: Xue Jinghong

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Roderick M.Chisholm on Justification I Synopsis Synopsis Since the problem of Gettier, the problem of justification has become the core of contemporary western epistemology. The author tries to clarify

More information

PowerPoint 簡報

PowerPoint 簡報 國 立 中 山 大 學 財 務 管 理 學 系 Department of Finance, NSYSU 刊 登 之 文 章, 其 版 權 屬 於 本 系, 非 徵 得 同 意, 不 得 轉 載 本 期 目 錄 1. 財 管 系 榮 譽 及 活 動 訊 息 2. 讓 夢 想 貣 飛 / 楊 佳 霖 3. Student Ambassador(SA)/ 陳 伯 穎 4. 財 務 報 表 之 重 大 變

More information

运动员治疗用药豁免申报审批办法

运动员治疗用药豁免申报审批办法 运 动 员 治 疗 用 药 豁 免 管 理 办 法 第 一 条 为 了 保 护 运 动 员 的 身 心 健 康, 保 证 运 动 员 的 伤 病 得 到 及 时 安 全 的 治 疗, 保 障 运 动 员 公 平 参 与 体 育 运 动 的 权 利, 根 据 国 务 院 反 兴 奋 剂 条 例, 参 照 世 界 反 兴 奋 剂 条 例 和 治 疗 用 药 豁 免 国 际 标 准 的 有 关 条 款,

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III IV V VI In recent years, the Taiwan s TV talk shows about the political topic have a bias in favour of party. In Taiwan, there are two property of party, one is called Blue property of party,

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information