Microsoft Access Understanding Relationships

Slides:



Advertisements
Similar presentations
Build a database I: Design tables for a new Access database
Advertisements

Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
ISP 121 Access Normalization and Relationships. Normalization Say we’re operating a pet day-care and we need to keep information on our pets/customers.
Access A Relational Database Management System. Prof. Leighton2 Database ► A database is a collection of data that’s related to a particular topic ► A.
Data Model Examples USER SPECIFICATIONS.
Database Software Application
MS Access 2007 IT User Services - University of Delaware.
Database Relationships Objective 5.01 Understand database tables used in business.
Entity Relationship Diagram Farrokh Alemi Ph.D. Francesco Loaiza, Ph.D. J.D. Vikas Arya.
MS Access Tutorial MGMT 683 J. Rees. Introduction MS Access is a relational database management system (RDBMS) Other PC-based RDMBS include: –MS FoxPro.
Food Recall System Pre Code System Design Layout Version 1.0.
Relational Database Concepts. Let’s start with a simple example of a database application Assume that you want to keep track of your clients’ names, addresses,
Introduction to Database Concepts and Microsoft Access 2010 Academic Health Center Training (352)
Microsoft Access Understanding Relationships Academic Health Center Training (352)
To enhance learning, service, and research through an advanced information technology environment. Our Mission:To enhance learning, service,and research.
HSC IT Center Training University of Florida Introduction to Database Concepts and Microsoft Access.
DATABASE DESIGN USING MICROSOFT ACCESS. What is a Database?  DMS Database management system  Database Collection of data organized in a manner that.
Microsoft Access Big City Store Sales Database CUSTOMERS First Last Address City State Zip PRODUCTS Product Supplier Description Units Cost Price SALES.
HSC IT Center Training University of Florida Introduction to Database Concepts and Microsoft Access 2007 Health Science Center IT Center – Training
IST 220 – Intro to Databases Analyzing Data Needs.
Microsoft Access Intro Class 6 Relationships.
Microsoft Access 2010 Crash Course Part 1 Academic Health Center Training (352)
HSC IT Center Training University of Florida Microsoft Access Understanding Relationships Health Science Center IT Center – Training
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Introduction to Database using Microsoft Access 2013 Part 7 November 19, 2014.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. Adding a new field 1Right click the table name and select design view 2Type the field information at the end.
DAY 15: ACCESS CHAPTER 1 Rahul Kavi October 6,
3. Relational Model Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
Quiz questions. 1 A data structure that is made up of fields and records? Table.
Microsoft Access is a database program to manage sort retrieve group filter for certain records.
Database design Using Access 2007
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
QUERY CONSTRUCTION CS1100: Data, Databases, and Queries CS1100Microsoft Access1.
HSC IT Center Training University of Florida Microsoft Access Relationships Health Science Center IT Center – Training
Introduction to Database Concepts and Microsoft Access 2007 Presented By: Mr. Kenver Regis.
Database Relationships
New Perspectives on Microsoft Access 2016
Microsoft Office Access 2010 Lab 1
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Databases Chapter 9 Asfia Rahman.
Journalizing Transactions
Microsoft Access 2016 Design and Implement Powerful Relational Databases Chapter 6.
Creating a Simple Database with Microsoft Access 2007
MIS2502: Data Analytics Relational Data Modeling
and Defining Table Relationships
Database Normalization
CIS 155 Table Relationship
Database Relationships
Introduction to Database Systems
CSCI-100 Introduction to Computing
Database Management  .
Design and Implement Powerful Relational Databases Chapter 6
Introduction to Database Concepts and Microsoft Access 2000
Entity-Relationship Model and Diagrams (continued)
Case Study Creating a Database
5.02 Understand database queries, forms, and reports used in business.
Introduction to Database Concepts and Microsoft Access 2003
Introduction to Database Concepts and Microsoft Access 2007
PHP and MySQL.
Microsoft Applications
Microsoft Official Academic Course, Access 2016
Database Relationships
Flat Files & Relational Databases
Lingma Acheson Department of Computer and Information Science IUPUI
Spreadsheets, Modelling & Databases
Topic 12 Lesson 1 – Data and databases
SALES RECEIPT Downloaded from
Joins and other advanced Queries
Introduction to Database Concepts and Microsoft Access 2007
Microsoft Access Date.
Presentation transcript:

Microsoft Access Understanding Relationships Health Science Center IT Center – Training training@health.ufl.edu

What is a Relational Database? A relational database is a collection of tables from which data can be accessed in many different ways without having to reorganize the database tables. That is, the tables can “talk” to each other. We can link (relate) our tables to find: Which doctors are seeing a patient Which students are in which class Which item is selling the most on Friday’s

What is a Relational Database? A relational database allows data structures, storage and retrieval operations, and integrity constraints. Integrity constraints provide a way of ensuring that changes made to the database by authorized users do not result in a loss of data consistency

Review of the Basic Design Rules of Relational Databases Unique Field Names Keep fields unique across tables, and keep them as clear as possible in each table. No Calculated or Derived Fields Calculations and derivations can be performed in Queries, Forms and Reports. Doing them in a table only increases the chance of data entry error.

Review of the Basic Design Rules of Relational Databases Data is broken down into Smallest Logical Parts Smallest “Sortable” parts. Remember it’s much easier to pull fields together than it is to pull a field apart. Unique Records Each of your tables should have unique records. We ensure this by setting one field to be a Primary Key. This can be a user generated field or an AutoNumber.

Table of Yards 2 1 Yards Yard Number Owner Address Phone Number 3 4

Table of Birdfeeders Bird Feeders Bird Feeder Number Material (wood, plastic...) Location in Yard

Relating Yards and Birdfeeders Bird Feeder Number Material Location in Yard Yards Yard Number Owner Address Phone Number There must be one field in both tables that is the same, so that the database knows how the tables connect. It’s best to use the Primary key as the link.

Relating Yards and Birdfeeders Bird Feeder Number Material Location in Yard Yards Yard Number Owner Address Phone Number Bird Feeder Number 1 Bird Feeder Number 2 ... If we put the Birdfeeder in the Yard table, we will have to count each one. BF1, BF2... Whenever you find yourself numbering the fields in this way, it’s a sign you’re on the wrong track

Relating Yards and Birdfeeders Bird Feeder Number Material Location in Yard Yard Number Yards Yard Number Owner Address Phone Number But if we reverse the direction, the link (relationship) makes more sense. Each Birdfeeder can only be in one Yard, but each Yard can have many Birdfeeders. This is called a one to many (1 - ∞) Relationship.

One to Many Relationships One to Many relationships are the most common relationships. One Birdfeeder is visited by Many Birds One Yard contains Many Birdfeeders One Patient has Many Prescriptions One Insurance has Many Patients One Student attends Many Classes One to Many includes One to None. A record MUST be in the One table in order to appear in the Many table.

One to Many Relationships Primary Key linked to Non Primary Key 1 ∞ Medical Record # Patients Prescription Number Medications

One to One Relationships One to One relationships can often combine the data into one table. One Birdfeeder is located in One place in the Yard One Yard has One Address One Patient has One Home Phone Number One Insurance has One Contact Person One Student has One Gatorlink ID

One to One Relationships Primary Key linked to Primary Key 1 Medical Record # Patients Email Address Patient Info

One to One Relationships Reasons you may use a One to One… You have more than 255 fields the maximum number of columns (fields) You have a large set of related data that doesn’t need to be accessed every time you look up that item medical history, map of the location, transcript from previous school

Many to Many Relationships Many to Many relationships are also very common. Many Students are taught by Many Teachers Many Patients see Many Doctors Many Medications are taken by Many Patients Many Customers buy Many Products You cannot create a “true” relationship between these tables.

Many to Many Relationships Non Primary Key linked to Non Primary Key ∞ Shands Medical Record # Medicare Patients Prescription Number Medications Access sees this as an Indeterminate relationship You cannot Enforce Referential Integrity

Indeterminate Relationships Indeterminate relationships are often found when we are linking tables, because Linked Tables cannot have a primary key. If you have imported or created a table, it’s very rare to have a need for an indeterminate Relationship. These relationships show Access that the data saved in the field from the first table is the same kind of data saved in the second table, but there can be no data integrity rules applied on indeterminate relationships.

Sales Database CUSTOMERS Customer ID First Last Address City State Zip PRODUCTS Product ID Product Supplier Description Units Cost Price Jack bought: 2 Hats 4 Pairs of Socks 3 Pairs of Shoes Shoes bought by: Jack Johnson Jill Jones Jerry Jacks

Many to Many Relationship Sales Database CUSTOMERS Customer ID First Last Address City State Zip PRODUCTS Product ID Product Supplier Description Units Cost Price   Many to Many Relationship

Sales Database CUSTOMERS Customer ID First Last Address City State Zip PRODUCTS Product ID Product Supplier Description Units Cost Price Customer1 Customer2 Customer3 ...... One Product can be purchased by an unlimited number of Customers.

Sales Database CUSTOMERS Customer ID First Last Address City State Zip Product1 Product2 Product3 ...... PRODUCTS Product ID Product Supplier Description Units Cost Price One Customer can purchase an unlimited number of Products.

Sales Database Main Table Main Table Junction Table CUSTOMERS Customer ID First Last Address City State Zip PRODUCTS Product ID Product Supplier Description Units Cost Price Junction Table SALES Sales ID Customer ID Product ID Date Quantity

Sales Database   1 1 One Product can be sold many times CUSTOMERS Customer ID First Last Address City State Zip 1 One Product can be sold many times  PRODUCTS Product ID Product Supplier Description Units Cost Price 1 One Customer can have many sales  SALES Sales ID Customer ID Product ID Date Quantity

Sales Database Products by Customer First ____________ Last __________________ Address ______________________________________ City_____________ State ____ Zip Code ________ Product Date Qty

Sales Database Customers by Products Supplier__________________________________ Description _______________________________ Units_________ Cost______ Price________ Customer Date Qty

Examples Patients Patient ID First Last Medications Address Med ID City State Zip Medications Med ID Medication Description

Examples  1 One Kind of Medication can be taken by Many Patients Patient Meds PM ID Patient ID Med ID Dosage Directions 1 One Patient can take many Medications  One Kind of Medication can be taken by Many Patients Patients Patient ID First Last Address City State Zip Medications Med ID Medication Description

Examples Patients Patient ID First Primary Drs Last Doc ID Address City State Zip Primary Drs Doc ID Name Phone Pager email

Examples Patients Patient ID First Last Address City State Zip Primary Drs Doc ID Name Phone Pager email One Patient will have only ONE primary Doctor. One Primary Doctor can have MANY patients. Primary Doc 1 

Examples Patients Patient ID First Last Address City State Zip Med History Patient ID Health Q1 Health Q2 Health Q3 Health Q4

Examples One Patient will have only ONE Medical History. Each Medical History will belong to only ONE patient. 1 Patients Patient ID First Last Address City State Zip Med History Patient ID Health Q1 Health Q2 Health Q3 Health Q4

Let’s Practice…