0% found this document useful (0 votes)
74 views

Course 1 Module 03 Lesson 1

This document provides an introduction to the relational data model and CREATE TABLE statement. It defines key concepts like tables, rows, columns and relationships. Sample tables show students enrolled in different course offerings with matching values. Alternative terminology is also listed for relational vs non-relational databases.

Uploaded by

Rom
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views

Course 1 Module 03 Lesson 1

This document provides an introduction to the relational data model and CREATE TABLE statement. It defines key concepts like tables, rows, columns and relationships. Sample tables show students enrolled in different course offerings with matching values. Alternative terminology is also listed for relational vs non-relational databases.

Uploaded by

Rom
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Information Systems Program

Module 3
Relational Data Model and
CREATE TABLE Statement

Lesson 1: Relational Data Model


Lesson Objectives
• Identify components in sample tables
• List alternative terminology

Information Systems Program


Relational Database Basics
• Collection of tables
• Heading: table name and column names
• Body: rows, occurrences of data

Student
StdNo StdFirstName StdLastName StdCity StdState StdZip StdMajor StdClass StdGPA
123-45-6789 HOMER WELLS SEATTLE WA 98121-1111 IS FR 3.00
124-56-7890 BOB NORBERT BOTHELL WA 98011-2121 FIN JR 2.70
234-56-7890 CANDY KENDALL TACOMA WA 99042-3321 ACCT JR 3.50

Information Systems Program


Sample Tables with Matching Values
Student
StdNo StdFirstName StdLastName StdCity StdState StdZip StdMajor StdClass StdGPA
123-45-6789 HOMER WELLS SEATTLE WA 98121-1111 IS FR 3.00
124-56-7890 BOB NORBERT BOTHELL WA 98011-2121 FIN JR 2.70
234-56-7890 CANDY KENDALL TACOMA WA 99042-3321 ACCT JR 3.50

Offering
OfferNo CourseNo OffTerm OffYear OffLocation OffTime FacNo OffDays
1111 IS320 SUMMER 2013 BLM302 10:30 AM MW
1234 IS320 FALL 2012 BLM302 10:30 AM 098-76-5432 MW
4321 IS320 FALL 2012 BLM214 3:30 PM 098-76-5432 TTH

Enrollment
OfferNo StdNo EnrGrade
1234 123-45-6789 3.3
1234 234-56-7890 3.5
4321 123-45-6789 3.5
4321 124-56-7890 3.2

Information Systems Program


Graphical Depiction of Matching Values

Student Offering
StdNo StdLastName OfferNo CourseNo
123-45-6789 WELLS 1234 IS320
124-56-7890 KENDALL 4321 IS320
234-56-7890 NORBERT

Enrollment
StdNo OfferNo
123-45-6789 1234

234-56-7890 1234

123-45-6789 4321

124-56-7890 4321

Information Systems Program


Alternative Terminology

Table-Oriented Set-Oriented Record-Oriented


Table Relation Record Type, File
Row Tuple Record
Column Attribute Field

Information Systems Program


Summary
• Commercial dominance of relational model
• Use sample tables as an aid in query formulation
• Importance of visualizing relationships

Information Systems Program

You might also like