CMPSC431W: ¡Database ¡Management ¡Systems ¡
Instructor: ¡Yu-‑San ¡Lin ¡ ¡ yusan@psu.edu ¡
¡ Course ¡Website: ¡hCp://www.cse.psu.edu/~yul189/cmpsc431w ¡ Slides ¡based ¡on ¡McGraw-‑Hill ¡& ¡Dr. ¡Wang-‑Chien ¡Lee ¡
¡ ¡
Lecture ¡9 ¡ 09/14/15 ¡
1 ¡
Lecture 9 09/14/15 Instructor: Yu-San Lin yusan@psu.edu - - PowerPoint PPT Presentation
CMPSC431W: Database Management Systems Lecture 9 09/14/15 Instructor: Yu-San Lin yusan@psu.edu Course Website: hCp://www.cse.psu.edu/~yul189/cmpsc431w Slides based
¡ Course ¡Website: ¡hCp://www.cse.psu.edu/~yul189/cmpsc431w ¡ Slides ¡based ¡on ¡McGraw-‑Hill ¡& ¡Dr. ¡Wang-‑Chien ¡Lee ¡
1 ¡
2 ¡
3 ¡
Employees ¡
ssn ¡ name ¡ lot ¡
Dependents ¡
pname ¡ age ¡
Policies ¡
policyi d ¡ cost ¡
Purchas er ¡ Benefici ary ¡
CREATE ¡TABLE ¡Policies ¡( ¡ ¡policyid ¡INTEGER, ¡ ¡cost ¡REAL, ¡ ¡ssn ¡CHAR ¡(11) ¡________, ¡ ¡PRIMARY ¡KEY ¡(policyid), ¡ ¡FOREIGN ¡KEY ¡(ssn) ¡ ¡ ¡REFERENCES ¡Employees, ¡ ¡ ¡_________________); ¡ CREATE ¡TABLE ¡Dependents ¡( ¡ ¡pname ¡CHAR(20), ¡ ¡age ¡INTEGER, ¡ ¡policyid ¡INTEGER, ¡ ¡PRIMARY ¡KEY ¡(________________), ¡ ¡FOREIGN ¡KEY ¡(________) ¡ ¡ ¡REFERENCES ¡Policies, ¡ ¡ ¡_________________); ¡
4 ¡
5 ¡
6 ¡
7 ¡
8 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ sid ¡ sname ¡ ra9ng ¡ age ¡ 28 ¡ yuppy ¡ 9 ¡ 35.0 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 44 ¡ guppy ¡ 5 ¡ 35.0 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ sid ¡ bid ¡ day ¡ 22 ¡ 101 ¡ 10/10/96 ¡ 58 ¡ 103 ¡ 11/12/96 ¡
Instance ¡S1 ¡of ¡Sailors ¡ Instance ¡S2 ¡of ¡Sailors ¡ Instance ¡R1 ¡of ¡Reserves ¡
9 ¡
10 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 28 ¡ yuppy ¡ 9 ¡ 35.0 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ SelecTon ¡condiTon ¡
11 ¡
12 ¡
sname ¡ ra9ng ¡ yuppy ¡ 9 ¡ Lubber ¡ 8 ¡ guppy ¡ 5 ¡ Rusty ¡ 10 ¡ Fields ¡to ¡be ¡retained ¡
projecTon ¡is ¡determined ¡by ¡ the ¡fields ¡that ¡are ¡projected ¡
13 ¡
14 ¡
15 ¡
16 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ 28 ¡ yuppy ¡ 9 ¡ 35.0 ¡ 44 ¡ guppy ¡ 5 ¡ 35.0 ¡
17 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡
18 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡
19 ¡
20 ¡
(sid) ¡ sname ¡ ra9ng ¡ age ¡ (sid) ¡ bid ¡ day ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡ 22 ¡ 101 ¡ 10/10/96 ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡ 58 ¡ 103 ¡ 11/12/96 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 22 ¡ 101 ¡ 10/10/96 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 58 ¡ 103 ¡ 11/12/96 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ 22 ¡ 101 ¡ 10/10/96 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ 58 ¡ 103 ¡ 11/12/96 ¡
21 ¡
sid ¡ sname ¡ ra9ng ¡ age ¡ 22 ¡ DusTn ¡ 7 ¡ 45.0 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ sid ¡ sname ¡ ra9ng ¡ age ¡ 28 ¡ yuppy ¡ 9 ¡ 35.0 ¡ 31 ¡ Lubber ¡ 8 ¡ 55.5 ¡ 44 ¡ guppy ¡ 5 ¡ 35.0 ¡ 58 ¡ Rusty ¡ 10 ¡ 35.0 ¡ sid ¡ bid ¡ day ¡ 22 ¡ 101 ¡ 10/10/96 ¡ 58 ¡ 103 ¡ 11/12/96 ¡
S1 ¡ S2 ¡ R1 ¡
22 ¡