Databases - Example A data table (tblDoctors) stores information about doctors working in a surgery Field Data type doctorID Text doctorName doctorGender.

Slides:



Advertisements
Similar presentations
Obtain Data from Other Sources Data you need to include in an Access database often already exists in another file: in another Access database, in a table.
Advertisements

Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Database A collection of related information stored on a computer and organized in a manner that allows access, retrieval, and use of that data.
MIS 451 Building Business Intelligence Systems Logical Design (3) – Design Multiple-fact Dimensional Model.
Database – Part 2a Dr. V.T. Raja Oregon State University.
Information Storage and Retrieval CS French Chapter 3.
Computer Science & Engineering 2111 Introduction to Database Management Systems Relationships and Database Creation 1 CSE 2111 Introduction to Database.
 A databases is a collection of data organized to make it easy to search and easy to retrieve in a useful, usable form.
Driving School Database
RELATIONSHIPS Generally there are two main database types: flat-file and relational.
Reality Show. In this unit, you have been asked to help a TV production company create a new exciting reality TV show! You are learning to: Understand.
Databases Lesson 1. Anagrams S E A A D T B A D I F E L C R O D E R N O I T A I L D A V.
ATADESAB. BATLE CORDER DLEIF Lesson objectives In this lesson you will learn some basic database terms and learn how a database is created.
Access: Queries Ad-hoc Reporting Chapter T. Access Queries Queries Access Properties Sorting Selection Criteria Calculations.
Database Design. Referential Integrity : data in a table that links to data in another table must always work in such a way that following the link will.
MS Access. Access is a DBMS/RDMS DBMS = Database Management System RDMS = Relational Database Management System.
What have we learned?. What is a database? An organized collection of related data.
Unit 5, Lesson 1 Working with Databases. Objectives Identify the parts of the Access screen. Identify the parts of the Access screen. Understand the purpose.
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
Introduction to a Database Defining a database Database window in Access The six items in window: Tables, Queries Forms, Reports, Macros, Modules.
ACIS Introduction to Data Analytics & Business Intelligence Ad-hoc Reporting Query Basics.
Introduction to Access Chapter 13 pages 1-4. What is a database??? Related information is stored in databases  All SC student information is stored in.
Planning & Creating a Database By Ms. Naira Microsoft Access.
Database Use and Structure
Study Opportunities1 Database table quiz What is your name?
Different key fields for different cases More to Learn A key field is a field that can be used to uniquely identify one specific record from other records.
* 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.
 May be times when we need calculations in a report. ◦ Total of how much a salesman has sold ◦ Report showing total inservice training hours an employee.
Part 1.  To answer the question “what is a database?”  To understand the basic components of a database and start to plan/create our own.
Xin 18 October, Quiz & Assignment Quiz 1 Scores will first be announced by Dr. Kawash after Thursday (confidential before that) You will receive.
VOCAB REVIEW. A field that can be computed from other fields Calculated field Click for the answer Next Question.
1 D201 WILD CARE DATABASE. 2 Right click on text file Then Save target as. Save this in your DATABASE folder Open this file or find the page in the booklet.
IGCSE 4 Cambridge Designing a database table Computer Science
Creating a database table
Tables & Relationships
Databases Chapter 9 Asfia Rahman.
records Database Vocabulary It can be useful to collect information.
Unit 16 – Database Systems
Database Concepts Relational Databases Start ….
Hierarchy of Data in a Database
CSCI-100 Introduction to Computing
Design a Relational Database Identify Database Purpose
Database Design and Development
Database Management  .
Data Tables Product Table Vendor Table Product ID# Vendor ID#
Order Database – ER Diagram
Introduction to Computer Science (CIS 101)
Poor Naming Standards.
Access Lesson 2 Creating a Database
5.02 Understand database queries, forms, and reports used in business.
Access Lesson 2 Creating a Database
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Miscrosoft Office..
Microsoft Applications
Database.
Access Tutorial 1 Creating a Database
Database Design and Development
Database Design and Development
Database Design and Development
Spreadsheets, Modelling & Databases
LISTING INCIDENT ID 1 Category Listing Status Submitted
Identifying the elements of a database
Databases and Access.
IT Solutions for Administrators - Databases
G061 - Data Dictionary.
Chapter 2 Design Table and Form.
Databases WOW!! A database is a collection of related data.
BTEC ICT – Unit 18 With Mr Griffiths.
Access Click on file and then you want a new database.
Chapter 2 Design Table and Form.
Presentation transcript:

Databases - Example A data table (tblDoctors) stores information about doctors working in a surgery Field Data type doctorID Text doctorName doctorGender Rules: R1: No two doctors share the same ID R2: Gender is either M or F doctorID doctorName doctorGender d1 Avery M d2 Grimshaw F

Databases - Example Field Data type doctorID Text doctorName doctorGender Rules: R1: No two doctors share the same ID R2: Gender is either M or F doctorID doctorName doctorGender d1 Avery M d2 Grimshaw F Name the three fields in the data table Write down the details of one record that already exists in the database Identify the primary key used in the data table Which one of the following records would be valid: (d5,Bagshaw,don’t know) (d4,Squirrell,F) (d2,Who,M)