SlideShare a Scribd company logo
1 of 39
Page 1 of 10
Tony LoCoco
My selected topic is a University system for a fictitious school
called LoCoco University.
Entity List & Descriptions
Entity Name Description / Special Notes Unique Identifier
Employees Contains a list of the University’s employees
Employee ID
Departments Contains a list of the University’s organizational
departments. Employees are assigned to departments.
Department
Advisors Contains a list of Academic Advisors assigned to
students.
An Advisor is also a University employee
Employee ID
(from the Employees table)
Students Contains a list of the University’s students Student ID
Courses Contains a list of Courses offered at the University that
students may enroll in.
Course ID
Sessions Contains a list of the Sessions. An academic school
year is
broken down into several sessions. Several courses are
conducted during a session. Sessions is a look-up table
which contain a list of the valid Sessions a in which a
student can enroll in a course.
Session
Student/Courses Maintains a list of each of the courses a
student took as
well as the grade earned during that course and section.
Session ID (from Sessions)
Course ID (from Courses)
Student ID (from Students)
Page 2 of 10
Relationships
Relationship
Type
Entity #1 Entity #2 Description / Justification
one-to-one (1:1) Advisors Employees An Advisor is an
Employee with additional data
attributes. An Employee may or may not be an Advisor.
one-to-many (1:M) Employees Departments A Department may
have 0, 1 or many Employees and an
Employee is assigned to just one Department.
one-to-many (1:M) Advisors Students An Advisor may be
assigned to 0, 1 or many Students and
a Student is assigned to just one Advisor.
many-to-many
(M:N)
Students Courses A Student be take 0 , 1 or many Courses and a
Course can
contain 0, 1 or many Students.
Relational Databases can not support many-to-many
relationships. These M:N must be broken down into two
one-to-many relationships with a bridge entity
connecting the M:N entities. In this case, Student_Courses
is that bridge entity.
Page 3 of 10
Entity Relationship Diagram (ERD)
Emloyees
PK Employee_ID
Last_Name
First_Name
Birth_Date
Employment_Start_Date
Hourly_Pay
FK1 Department_ID
Manager_ID
Departments
PK Department_ID
Department_Name
Students
PK Student_ID
Last_Name
First_Name
Birth_Date
Enroll_Date
Status_Code
Total_Hours
FK1,FK2 Advisor_ID
Advisors
PK,FK1 Employee_ID
Certification_Level
Courses
PK Course_ID
Course_Code
Course_Name
Credit_Hours
Sessions
PK Session_ID
Session_Name
Session_Start_Date
Student_Courses
PK,FK1 Session_ID
PK,FK3 Course_ID
PK,FK2 Student_ID
Earned_Grade
Page 4 of 10
Sample Data
(Primary keys are in Yellow)
Advisors
Employee_ID Certification_Level
1344 100
1565 80
Page 5 of 10
Courses
Course_ID Course_Code Course_Name Credit_Hours
1 ITD200 Database I 4
2 ITD300 Database II 4
3 ITD400 Advanced Databases 4
4 ITN200 Networking I 4
5 ITN300 Networking II 4
6 ITN400 Advanced Networking 4
7 ITP200 Intro to Programming 4
8 ITP300 Programming II 4
9 ITP400 Advanced Programming 4
Page 6 of 10
Departments
Department_ID Department_Name
1 Academics
2 Finance
3 Student Advisors
4 Marketing
5 Recruitment
6 Office of Provost
7 Information Technology
Page 7 of 10
Employees
Employee_ID Last_Name First_Name Birth_Date
Employment_Start_Date Hourly_Pay Department_ID
Manager_ID
1000 Smith Chris 1980-09-14 2001-01-02 30.50 2 1000
1121 Townsend Robert 1976-02-03 2001-03-02 24.30 1 1121
1223 Cogdon Luis 1974-04-05 2001-04-21 24.30 2 1000
1344 Lancette Joseph 1980-03-05 2002-04-10 23.34 3 1344
1366 Lark James 1985-06-06 2005-05-19 23.55 2 1000
1565 Whitely Jeremy 1973-10-23 2011-02-05 23.45 3 1344
1808 Fix Julie 1968-02-04 2003-12-01 30.04 1 1121
Page 8 of 10
Sessions
Session_ID Session_Name Session_Start_Date
10 1201-A 2012-01-02
11 1201-B 2012-02-15
12 1202-A 2012-04-01
13 1202-B 2012-05-15
14 1203-A 2012-07-01
15 1203-B 2012-08-15
16 1204-A 2012-10-01
17 1204-B 2012-11-15
Page 9 of 10
Students
Student_ID Last_Name First_Name Birth_Date Enroll_Date
Status_Code Total_Hours Advisor_ID
11232 Bowser Timothy 2/3/1980 1/2/2011 1 20 1565
12100 Chavez Kelly 12/10/1976 4/1/2011 2 22 1565
13310 Clark Ethan 10/13/1982 6/15/2011 1 24 1344
14641 Colon Alexander 1/14/1980 8/1/2011 1 20 1565
16105 Cutts Cardright 5/16/1970 6/15/2011 2 22 1565
17715 Fair Jermaine 5/17/1982 4/1/2011 2 24 1344
19487 Garrett Michael 4/19/1975 8/1/2011 2 20 1565
21435 Hintz Valarie 5/3/1980 1/2/2011 1 22 1344
23579 Mcclain Clint 5/3/1979 4/1/2011 1 24 1565
25937 McFarlane Brenda 7/25/1976 6/15/2011 1 16 1344
28576 Mohr Bryan 6/26/1980 8/1/2011 1 28 1565
31384 Rettino Steven 11/15/1969 1/2/2011 3 20 1344
34522 Sanchez Thomas 2/17/1980 4/1/2011 1 22 1344
37974 Sudbury Dale 9/4/1967 8/1/2011 3 24 1565
41772 Tribbitt Patrick 4/17/1981 1/2/2011 2 32 1344
Page 10 of 10
Student_Courses
Session_ID Course_ID Student_ID Earned_Grade
10 1 11232 F
10 1 12100 A
10 1 13310 B
10 1 14641 B
10 1 16105 C
11 1 11232 A
11 2 12100 B
11 2 13310 B
11 2 14641 A
11 2 16105 C
11 2 11232 A
11 6 12100 B
11 6 13310 B
3 6 14641 B
3 6 16105 A
{Enter Your Name Here}
My selected topic is:
_____________________________________________.
Entity List & Descriptions
Entity Name
Description / Special Notes
Unique Identifier
Relationships
Relationship Type
Entity #1
Entity #2
Description / Justification
one-to-one (1:1)
{why is this an example of a 1:1 and not a 1:M or M:N?}
one-to-many (1:M)
{why is this an example of a 1:M and not a 1:1 or M:N?}
many-to-many (M:N)
{why is this an example of a M:N and not a 1:1 or 1:1?}
Entity Relationship Diagram (ERD)
{Insert your ERD here}
Sample Data
· Highlight Unique Identifiers in Yellow
· Note: Format the table so that all rows and columns are
visible.
· Delete un-needed columns and rows.
· Add more columns/rows as needed. Just make sure all
columns are visible in the white space.
{Entity #1}
{Entity #2}
{Entity #3}
{Entity #4}
{Entity #5}
{Entity #6}
{Entity #7}
{Entity #8}
Page 1 of 12

More Related Content

Similar to Page 1 of 10 Tony LoCoco My selected topic is a U.docx

A sample of ADDIE model Documentation of System Development in Education
A sample of ADDIE model Documentation of System Development in EducationA sample of ADDIE model Documentation of System Development in Education
A sample of ADDIE model Documentation of System Development in EducationMarc Johndery
 
Gr12 parent meeting 2015
Gr12 parent meeting 2015Gr12 parent meeting 2015
Gr12 parent meeting 2015Alan Perkins
 
Bus201 outline 2011s1
Bus201 outline 2011s1Bus201 outline 2011s1
Bus201 outline 2011s1Thanh Thanh
 
MMC Transcripts-Erik Gray
MMC Transcripts-Erik GrayMMC Transcripts-Erik Gray
MMC Transcripts-Erik GrayErik Gray
 
Gr11 parent meeting 23092014
Gr11 parent meeting 23092014Gr11 parent meeting 23092014
Gr11 parent meeting 23092014Alan Perkins
 
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdf
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdfTECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdf
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdfy1qq58teaw
 
1 Course information BUSS1054 201403 Ma.docx
1  Course information BUSS1054   201403 Ma.docx1  Course information BUSS1054   201403 Ma.docx
1 Course information BUSS1054 201403 Ma.docxmercysuttle
 
200091 Business to Business Marketing School of Business.docx
200091 Business to Business Marketing School of Business.docx200091 Business to Business Marketing School of Business.docx
200091 Business to Business Marketing School of Business.docxeugeniadean34240
 
Using Your Campus Website and College Catalog
Using Your Campus Website and College CatalogUsing Your Campus Website and College Catalog
Using Your Campus Website and College CatalogMirnell
 
Thesis summary knowledge discovery from academic data using association rule...
Thesis summary  knowledge discovery from academic data using association rule...Thesis summary  knowledge discovery from academic data using association rule...
Thesis summary knowledge discovery from academic data using association rule...shibbirtanvin
 

Similar to Page 1 of 10 Tony LoCoco My selected topic is a U.docx (20)

Session 3
Session 3 Session 3
Session 3
 
DBMS CIA.pptx
DBMS CIA.pptxDBMS CIA.pptx
DBMS CIA.pptx
 
A sample of ADDIE model Documentation of System Development in Education
A sample of ADDIE model Documentation of System Development in EducationA sample of ADDIE model Documentation of System Development in Education
A sample of ADDIE model Documentation of System Development in Education
 
Gr12 parent meeting 2015
Gr12 parent meeting 2015Gr12 parent meeting 2015
Gr12 parent meeting 2015
 
Bus201 outline 2011s1
Bus201 outline 2011s1Bus201 outline 2011s1
Bus201 outline 2011s1
 
MMC Transcripts-Erik Gray
MMC Transcripts-Erik GrayMMC Transcripts-Erik Gray
MMC Transcripts-Erik Gray
 
Gr11 parent meeting 23092014
Gr11 parent meeting 23092014Gr11 parent meeting 23092014
Gr11 parent meeting 23092014
 
CTU Transcript
CTU TranscriptCTU Transcript
CTU Transcript
 
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdf
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdfTECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdf
TECO602_UO Intro_T2Intro_T2_2022Intro_T2_2022_2022.pdf
 
Lm math grade10_q4
Lm math grade10_q4Lm math grade10_q4
Lm math grade10_q4
 
1 Course information BUSS1054 201403 Ma.docx
1  Course information BUSS1054   201403 Ma.docx1  Course information BUSS1054   201403 Ma.docx
1 Course information BUSS1054 201403 Ma.docx
 
200091 Business to Business Marketing School of Business.docx
200091 Business to Business Marketing School of Business.docx200091 Business to Business Marketing School of Business.docx
200091 Business to Business Marketing School of Business.docx
 
1syllabus
1syllabus1syllabus
1syllabus
 
Module guide
Module guideModule guide
Module guide
 
Module guide
Module guideModule guide
Module guide
 
Module guide
Module guideModule guide
Module guide
 
Using Your Campus Website and College Catalog
Using Your Campus Website and College CatalogUsing Your Campus Website and College Catalog
Using Your Campus Website and College Catalog
 
Syllabus bfin 350 fin
Syllabus bfin 350 finSyllabus bfin 350 fin
Syllabus bfin 350 fin
 
Báo Cáo Thực Tập Comparing The Writing Part Of The Three International Examin...
Báo Cáo Thực Tập Comparing The Writing Part Of The Three International Examin...Báo Cáo Thực Tập Comparing The Writing Part Of The Three International Examin...
Báo Cáo Thực Tập Comparing The Writing Part Of The Three International Examin...
 
Thesis summary knowledge discovery from academic data using association rule...
Thesis summary  knowledge discovery from academic data using association rule...Thesis summary  knowledge discovery from academic data using association rule...
Thesis summary knowledge discovery from academic data using association rule...
 

More from alfred4lewis58146

For this assignment, students will need to observe the activities th.docx
For this assignment, students will need to observe the activities th.docxFor this assignment, students will need to observe the activities th.docx
For this assignment, students will need to observe the activities th.docxalfred4lewis58146
 
For this assignment, select a human service organization from .docx
For this assignment, select a human service organization from .docxFor this assignment, select a human service organization from .docx
For this assignment, select a human service organization from .docxalfred4lewis58146
 
For this Assignment, read the case study for Claudia and find tw.docx
For this Assignment, read the case study for Claudia and find tw.docxFor this Assignment, read the case study for Claudia and find tw.docx
For this Assignment, read the case study for Claudia and find tw.docxalfred4lewis58146
 
For this assignment, download the A6 code pack. This zip fil.docx
For this assignment, download the A6 code pack. This zip fil.docxFor this assignment, download the A6 code pack. This zip fil.docx
For this assignment, download the A6 code pack. This zip fil.docxalfred4lewis58146
 
For this assignment, create infographic using the Canva website..docx
For this assignment, create infographic using the Canva website..docxFor this assignment, create infographic using the Canva website..docx
For this assignment, create infographic using the Canva website..docxalfred4lewis58146
 
For this assignment, compare  California during the Great Depression.docx
For this assignment, compare  California during the Great Depression.docxFor this assignment, compare  California during the Great Depression.docx
For this assignment, compare  California during the Great Depression.docxalfred4lewis58146
 
For this assignment, create a 10- to 12-slide presentation in Mi.docx
For this assignment, create a 10- to 12-slide presentation in Mi.docxFor this assignment, create a 10- to 12-slide presentation in Mi.docx
For this assignment, create a 10- to 12-slide presentation in Mi.docxalfred4lewis58146
 
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docx
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docxFor this assignment, begin by reading chapters 12-15 in Dr. Bells t.docx
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docxalfred4lewis58146
 
For this assignment, assume you are the new Secretary of Homelan.docx
For this assignment, assume you are the new Secretary of Homelan.docxFor this assignment, assume you are the new Secretary of Homelan.docx
For this assignment, assume you are the new Secretary of Homelan.docxalfred4lewis58146
 
For this assignment, address the following promptsIntroductor.docx
For this assignment, address the following promptsIntroductor.docxFor this assignment, address the following promptsIntroductor.docx
For this assignment, address the following promptsIntroductor.docxalfred4lewis58146
 
For this assignment, analyze the play by focusing on one of the .docx
For this assignment, analyze the play by focusing on one of the .docxFor this assignment, analyze the play by focusing on one of the .docx
For this assignment, analyze the play by focusing on one of the .docxalfred4lewis58146
 
For this assignment I would like you to answer these questions.docx
For this assignment I would like you to answer these questions.docxFor this assignment I would like you to answer these questions.docx
For this assignment I would like you to answer these questions.docxalfred4lewis58146
 
For the Weekly Reports I need 2 reports. For the First two weeks the.docx
For the Weekly Reports I need 2 reports. For the First two weeks the.docxFor the Weekly Reports I need 2 reports. For the First two weeks the.docx
For the Weekly Reports I need 2 reports. For the First two weeks the.docxalfred4lewis58146
 
For the shortanswer questions,you will need to respo.docx
For the shortanswer questions,you will need to respo.docxFor the shortanswer questions,you will need to respo.docx
For the shortanswer questions,you will need to respo.docxalfred4lewis58146
 
For the sake of argument (this essay in particular), lets prete.docx
For the sake of argument (this essay in particular), lets prete.docxFor the sake of argument (this essay in particular), lets prete.docx
For the sake of argument (this essay in particular), lets prete.docxalfred4lewis58146
 
For the proposal, each student must describe an interface they a.docx
For the proposal, each student must describe an interface they a.docxFor the proposal, each student must describe an interface they a.docx
For the proposal, each student must describe an interface they a.docxalfred4lewis58146
 
For the project, you will be expected to apply the key concepts of p.docx
For the project, you will be expected to apply the key concepts of p.docxFor the project, you will be expected to apply the key concepts of p.docx
For the project, you will be expected to apply the key concepts of p.docxalfred4lewis58146
 
For the past several weeks you have addressed several different area.docx
For the past several weeks you have addressed several different area.docxFor the past several weeks you have addressed several different area.docx
For the past several weeks you have addressed several different area.docxalfred4lewis58146
 
For the Mash it Up assignment, we experimented with different ways t.docx
For the Mash it Up assignment, we experimented with different ways t.docxFor the Mash it Up assignment, we experimented with different ways t.docx
For the Mash it Up assignment, we experimented with different ways t.docxalfred4lewis58146
 
For the first time in modern history, the world is experiencing a he.docx
For the first time in modern history, the world is experiencing a he.docxFor the first time in modern history, the world is experiencing a he.docx
For the first time in modern history, the world is experiencing a he.docxalfred4lewis58146
 

More from alfred4lewis58146 (20)

For this assignment, students will need to observe the activities th.docx
For this assignment, students will need to observe the activities th.docxFor this assignment, students will need to observe the activities th.docx
For this assignment, students will need to observe the activities th.docx
 
For this assignment, select a human service organization from .docx
For this assignment, select a human service organization from .docxFor this assignment, select a human service organization from .docx
For this assignment, select a human service organization from .docx
 
For this Assignment, read the case study for Claudia and find tw.docx
For this Assignment, read the case study for Claudia and find tw.docxFor this Assignment, read the case study for Claudia and find tw.docx
For this Assignment, read the case study for Claudia and find tw.docx
 
For this assignment, download the A6 code pack. This zip fil.docx
For this assignment, download the A6 code pack. This zip fil.docxFor this assignment, download the A6 code pack. This zip fil.docx
For this assignment, download the A6 code pack. This zip fil.docx
 
For this assignment, create infographic using the Canva website..docx
For this assignment, create infographic using the Canva website..docxFor this assignment, create infographic using the Canva website..docx
For this assignment, create infographic using the Canva website..docx
 
For this assignment, compare  California during the Great Depression.docx
For this assignment, compare  California during the Great Depression.docxFor this assignment, compare  California during the Great Depression.docx
For this assignment, compare  California during the Great Depression.docx
 
For this assignment, create a 10- to 12-slide presentation in Mi.docx
For this assignment, create a 10- to 12-slide presentation in Mi.docxFor this assignment, create a 10- to 12-slide presentation in Mi.docx
For this assignment, create a 10- to 12-slide presentation in Mi.docx
 
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docx
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docxFor this assignment, begin by reading chapters 12-15 in Dr. Bells t.docx
For this assignment, begin by reading chapters 12-15 in Dr. Bells t.docx
 
For this assignment, assume you are the new Secretary of Homelan.docx
For this assignment, assume you are the new Secretary of Homelan.docxFor this assignment, assume you are the new Secretary of Homelan.docx
For this assignment, assume you are the new Secretary of Homelan.docx
 
For this assignment, address the following promptsIntroductor.docx
For this assignment, address the following promptsIntroductor.docxFor this assignment, address the following promptsIntroductor.docx
For this assignment, address the following promptsIntroductor.docx
 
For this assignment, analyze the play by focusing on one of the .docx
For this assignment, analyze the play by focusing on one of the .docxFor this assignment, analyze the play by focusing on one of the .docx
For this assignment, analyze the play by focusing on one of the .docx
 
For this assignment I would like you to answer these questions.docx
For this assignment I would like you to answer these questions.docxFor this assignment I would like you to answer these questions.docx
For this assignment I would like you to answer these questions.docx
 
For the Weekly Reports I need 2 reports. For the First two weeks the.docx
For the Weekly Reports I need 2 reports. For the First two weeks the.docxFor the Weekly Reports I need 2 reports. For the First two weeks the.docx
For the Weekly Reports I need 2 reports. For the First two weeks the.docx
 
For the shortanswer questions,you will need to respo.docx
For the shortanswer questions,you will need to respo.docxFor the shortanswer questions,you will need to respo.docx
For the shortanswer questions,you will need to respo.docx
 
For the sake of argument (this essay in particular), lets prete.docx
For the sake of argument (this essay in particular), lets prete.docxFor the sake of argument (this essay in particular), lets prete.docx
For the sake of argument (this essay in particular), lets prete.docx
 
For the proposal, each student must describe an interface they a.docx
For the proposal, each student must describe an interface they a.docxFor the proposal, each student must describe an interface they a.docx
For the proposal, each student must describe an interface they a.docx
 
For the project, you will be expected to apply the key concepts of p.docx
For the project, you will be expected to apply the key concepts of p.docxFor the project, you will be expected to apply the key concepts of p.docx
For the project, you will be expected to apply the key concepts of p.docx
 
For the past several weeks you have addressed several different area.docx
For the past several weeks you have addressed several different area.docxFor the past several weeks you have addressed several different area.docx
For the past several weeks you have addressed several different area.docx
 
For the Mash it Up assignment, we experimented with different ways t.docx
For the Mash it Up assignment, we experimented with different ways t.docxFor the Mash it Up assignment, we experimented with different ways t.docx
For the Mash it Up assignment, we experimented with different ways t.docx
 
For the first time in modern history, the world is experiencing a he.docx
For the first time in modern history, the world is experiencing a he.docxFor the first time in modern history, the world is experiencing a he.docx
For the first time in modern history, the world is experiencing a he.docx
 

Recently uploaded

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 

Recently uploaded (20)

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 

Page 1 of 10 Tony LoCoco My selected topic is a U.docx

  • 1. Page 1 of 10 Tony LoCoco My selected topic is a University system for a fictitious school called LoCoco University. Entity List & Descriptions Entity Name Description / Special Notes Unique Identifier Employees Contains a list of the University’s employees Employee ID Departments Contains a list of the University’s organizational departments. Employees are assigned to departments. Department Advisors Contains a list of Academic Advisors assigned to students. An Advisor is also a University employee Employee ID
  • 2. (from the Employees table) Students Contains a list of the University’s students Student ID Courses Contains a list of Courses offered at the University that students may enroll in. Course ID Sessions Contains a list of the Sessions. An academic school year is broken down into several sessions. Several courses are conducted during a session. Sessions is a look-up table which contain a list of the valid Sessions a in which a student can enroll in a course. Session Student/Courses Maintains a list of each of the courses a student took as well as the grade earned during that course and section. Session ID (from Sessions) Course ID (from Courses)
  • 3. Student ID (from Students) Page 2 of 10 Relationships Relationship Type Entity #1 Entity #2 Description / Justification one-to-one (1:1) Advisors Employees An Advisor is an Employee with additional data attributes. An Employee may or may not be an Advisor. one-to-many (1:M) Employees Departments A Department may have 0, 1 or many Employees and an Employee is assigned to just one Department. one-to-many (1:M) Advisors Students An Advisor may be assigned to 0, 1 or many Students and a Student is assigned to just one Advisor.
  • 4. many-to-many (M:N) Students Courses A Student be take 0 , 1 or many Courses and a Course can contain 0, 1 or many Students. Relational Databases can not support many-to-many relationships. These M:N must be broken down into two one-to-many relationships with a bridge entity connecting the M:N entities. In this case, Student_Courses is that bridge entity. Page 3 of 10 Entity Relationship Diagram (ERD) Emloyees PK Employee_ID
  • 6. FK1,FK2 Advisor_ID Advisors PK,FK1 Employee_ID Certification_Level Courses PK Course_ID Course_Code Course_Name Credit_Hours Sessions PK Session_ID Session_Name Session_Start_Date Student_Courses PK,FK1 Session_ID PK,FK3 Course_ID PK,FK2 Student_ID Earned_Grade
  • 7. Page 4 of 10 Sample Data (Primary keys are in Yellow) Advisors Employee_ID Certification_Level 1344 100 1565 80 Page 5 of 10 Courses Course_ID Course_Code Course_Name Credit_Hours 1 ITD200 Database I 4 2 ITD300 Database II 4
  • 8. 3 ITD400 Advanced Databases 4 4 ITN200 Networking I 4 5 ITN300 Networking II 4 6 ITN400 Advanced Networking 4 7 ITP200 Intro to Programming 4 8 ITP300 Programming II 4 9 ITP400 Advanced Programming 4 Page 6 of 10 Departments Department_ID Department_Name 1 Academics 2 Finance 3 Student Advisors 4 Marketing 5 Recruitment
  • 9. 6 Office of Provost 7 Information Technology Page 7 of 10 Employees Employee_ID Last_Name First_Name Birth_Date Employment_Start_Date Hourly_Pay Department_ID Manager_ID 1000 Smith Chris 1980-09-14 2001-01-02 30.50 2 1000 1121 Townsend Robert 1976-02-03 2001-03-02 24.30 1 1121 1223 Cogdon Luis 1974-04-05 2001-04-21 24.30 2 1000 1344 Lancette Joseph 1980-03-05 2002-04-10 23.34 3 1344 1366 Lark James 1985-06-06 2005-05-19 23.55 2 1000 1565 Whitely Jeremy 1973-10-23 2011-02-05 23.45 3 1344 1808 Fix Julie 1968-02-04 2003-12-01 30.04 1 1121
  • 10. Page 8 of 10 Sessions Session_ID Session_Name Session_Start_Date 10 1201-A 2012-01-02 11 1201-B 2012-02-15 12 1202-A 2012-04-01 13 1202-B 2012-05-15 14 1203-A 2012-07-01 15 1203-B 2012-08-15 16 1204-A 2012-10-01 17 1204-B 2012-11-15 Page 9 of 10 Students
  • 11. Student_ID Last_Name First_Name Birth_Date Enroll_Date Status_Code Total_Hours Advisor_ID 11232 Bowser Timothy 2/3/1980 1/2/2011 1 20 1565 12100 Chavez Kelly 12/10/1976 4/1/2011 2 22 1565 13310 Clark Ethan 10/13/1982 6/15/2011 1 24 1344 14641 Colon Alexander 1/14/1980 8/1/2011 1 20 1565 16105 Cutts Cardright 5/16/1970 6/15/2011 2 22 1565 17715 Fair Jermaine 5/17/1982 4/1/2011 2 24 1344 19487 Garrett Michael 4/19/1975 8/1/2011 2 20 1565 21435 Hintz Valarie 5/3/1980 1/2/2011 1 22 1344 23579 Mcclain Clint 5/3/1979 4/1/2011 1 24 1565 25937 McFarlane Brenda 7/25/1976 6/15/2011 1 16 1344 28576 Mohr Bryan 6/26/1980 8/1/2011 1 28 1565 31384 Rettino Steven 11/15/1969 1/2/2011 3 20 1344 34522 Sanchez Thomas 2/17/1980 4/1/2011 1 22 1344 37974 Sudbury Dale 9/4/1967 8/1/2011 3 24 1565 41772 Tribbitt Patrick 4/17/1981 1/2/2011 2 32 1344
  • 12. Page 10 of 10 Student_Courses Session_ID Course_ID Student_ID Earned_Grade 10 1 11232 F 10 1 12100 A 10 1 13310 B 10 1 14641 B 10 1 16105 C 11 1 11232 A 11 2 12100 B 11 2 13310 B 11 2 14641 A 11 2 16105 C 11 2 11232 A 11 6 12100 B 11 6 13310 B 3 6 14641 B
  • 13. 3 6 16105 A {Enter Your Name Here} My selected topic is: _____________________________________________. Entity List & Descriptions Entity Name Description / Special Notes Unique Identifier
  • 14. Relationships Relationship Type Entity #1 Entity #2 Description / Justification one-to-one (1:1) {why is this an example of a 1:1 and not a 1:M or M:N?} one-to-many (1:M) {why is this an example of a 1:M and not a 1:1 or M:N?} many-to-many (M:N) {why is this an example of a M:N and not a 1:1 or 1:1?} Entity Relationship Diagram (ERD) {Insert your ERD here} Sample Data · Highlight Unique Identifiers in Yellow · Note: Format the table so that all rows and columns are visible.
  • 15. · Delete un-needed columns and rows. · Add more columns/rows as needed. Just make sure all columns are visible in the white space. {Entity #1}
  • 16.
  • 17.
  • 19.
  • 20.
  • 22.
  • 23.
  • 25.
  • 26.
  • 28.
  • 29.
  • 31.
  • 32.
  • 34.
  • 35.
  • 37.
  • 38.
  • 39. Page 1 of 12