MIS - Lect 7
MIS - Lect 7
Network Model
Hierarchical Model
Relational Model
Object Oriented Model
Data Models
Object Relational Models
Hierarchical structure
Records are arranged in multilevel with one root and any number of
subordinate levels. Thus all relationships are one-to- many.
Network structure
Data can be accessed through many paths.
Relational structure
Data stored in the database in viewed the form of simple tables.
Object-oriented
It is a key technology to web-based multimedia applications where
data stored in the form of objects.
Stores both
Data about real
world objects
(entities) in tables
Relationships
between the tables
RELATIONAL DATABASE
Table
A collection of relevant data relating to one type of real world objects.
Column
A specific place for one type of data relating to one type of real world
objects.
Domain
Set of all possible values for a specific column.
Row
Collection of data describing one real world object.
Primary Key
Columns, which are part of the row and uniquely identify any one row.
Foreign Key
A foreign key is generally a primary key from one table that appears as a
field in another where the first table has a relationship to the second
Present by Mirza Asher Baig
RECORDS
Student
ID Last First Grade Class
ID is the primary key 1 Wood Bob C IST357
in this table (two
students may share 2 Kent Chuck B IST115
either a last or first 3 Smith Jane A IST357
name)
4 Boone Dan B IST357
Student
Class
ID Last First Grade Class
Name #Stud Instructor
1 Wood Bob C IST357
IST357 48 Jones
2 Kent Chuck B IST115
IST115 120 Brower
3 Smith Jane A IST357
IST20 120 Fountain
4 Boone Dan B IST357
Student
Class
ID Last First Grade Class
1 Wood Bob C IST357 Name #Stud Instructor
IST357 48 Jones
2 Kent Chuck B IST115
IST115 120 Brower
3 Smith Jane A IST357
IST20 120 Mennis
4 Boone Dan B IST357
Student
ID Last First Grade Class Class
Name #Stud Instructor
1 Wood Bob C IST357
IST20 120 Brower
2 Kent Chuck B IST115
IST115 120 Jones
3 Smith Jane A IST357
IST357 48 Jones
4 Boone Dan B IST357
Instructor
Name Office
Jones 332
Brower 517
Present by Mirza Asher Baig
RDBMS FEATURES