Database Concepts Relational Databases Start ….

Slides:



Advertisements
Similar presentations
Content 15.1 Basic features Types of database Data structures 15.2 Creating a database Screen layout Entering data Editing data 15.3 Displaying data Searching.
Advertisements

Organisation Of Data (1) Database Theory
Database Management Systems and Enterprise Software
WHAT D IS RAW, UNPROCESSED FACTS AND FIGURES COLLECTED, STORED AND PROCESSED BY COMPUTERS.
Post Exam Study Database Design
GCSE Computing#BristolMet Session Objectives# 21 MUST describe methods of validating data as it is input. SHOULD explain the use of key fields to connect.
Database PowerPoint Guy Wade Comm 165 Guy Wade Comm 165.
Relational Databases What is a relational database? What would we use one for? What do they look like? How can we describe them? How can you create one?
Databases. Objectives Define what a database is. Understand the difference between a flat and relational database Design and create a relational database.
Microsoft Access Ervin Ha.
2.3 Organising Data for Effective Retrieval
MICROSOFT ACCESS 2007 BTA – Spring What is Access?  Microsoft Access is a database management system…this means that it contains database information.
Databases. Database A database is an organized collection of related data.
1 n 1 n 1 1 n n Schema for part of a business application relational database.
Session 8: Databases Teaching Computing to GCSE Level with Python.
Information Systems & Databases 2.2) Organisation methods.
DATABASES Southern Region CEO Wednesday 13 th October 2010.
ATADESAB. BATLE CORDER DLEIF Lesson objectives In this lesson you will learn some basic database terms and learn how a database is created.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
Database revision.
NC WiseOwl eBooks K-8 NC WiseOwl eBooks K-8 Search for eBooks on your topic from this large collection of current titles. eBooks K-8 Search for eBooks.
A table is a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Howard Paul. Sequential Access Index Files and Data File Random Access.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Visual Database Creation with MySQL Workbench 도시정보시스템 설계
The Database Concept and the Database Management System (DBMS) Databases.
Copyright © it’sLearning 365. All rights reserved. DATABASE CONCEPTS Understanding Databases Start …
PGCE Computer Science/ICT Progression in Databases Alex Hadwen-Bennett.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Lesson 10 Databases.
Query Methods Simple SQL Statements Start ….
Tables & Relationships
Databases Chapter 9 Asfia Rahman.
Database Management Systems II
Query Methods Where Clauses Start ….
Query Methods Where Clauses Start ….
Databases Key Revision Points.
SQL Relational Database Project
3.5 Databases Relationships.
CHAPTER 7 DATABASE ACCESS THROUGH WEB
Creating a Database Microsoft Access.
COP 4540 Database Management
Databases Chapter 16.
Relational Databases.
Databases Explained Tables © Dolinski 2007.
Introduction to Database Systems
GCSE COMPUTER SCIENCE Topic 3 - Data 3.5 Databases.
Database Management  .
Databases A brief introduction….
What is a Database and Why Use One?
Teaching slides Chapter 8.
More about Databases.
5.02 Understand database queries, forms, and reports used in business.
PHP and MySQL.
INTRODUCING DATABASES
Access Tutorial 1 Creating a Database
Introduction to Database Programs
Introduction To Databases GCSE Computer Science
Database Design Hacettepe University
Spreadsheets, Modelling & Databases
Introduction To Databases GCSE Computer Science
Introduction to Databases
Microsoft Office Access is the best –selling personal computer database management system. What is Access?
Introduction to Database Programs
Question 1: Basic Concepts (45 %)
Databases This topic looks at the basic concept of a database, the key features and benefits of a Database Management System (DBMS) and the basic theory.
Text Features 7th Grade Literature.
Database Management Systems and Enterprise Software
Presentation transcript:

Database Concepts Relational Databases Start …

All – most - some ... ALL : Identify the differences between flat file and relational databases MOST : Explain how to use Primary Keys and Foreign Keys SOME : Describe how databases use Indexing Next …

Click to explore more about the Databases … What is a Database? Primary & Foreign Key Thought board Relational Databases Design a Database

What is a Database ..? A database is just a collection of data A simple database could be a computing text book Next …

What is a Database ..? Data about each topic is stored in the book The data is organised into chapters You can search for a topic using the content and index pages Back … Next …

What is a Database ..? Organisations have data that they need to store, collate and analyse 30 years ago this data would have been stored in a filing cabinet Back … Next …

What is a Database ..? Modern organisations use computer systems to store, collate and analyse data These systems are called Databases Back … Explore …

Relational Databases … A relational database … Stores data … In different tables, and … The tables are joined with a relationship Most relational databases use a language called Structured Query Language (SQL) Next …

Relational Databases … Different types of relationships can be created … One – to - One tblNames tblContactDetails One person in tblNames can have One contact detail in tblContactDetails Back … Next …

Relational Databases … Different types of relationships can be created … One – to – Many tblNames tblContactDetails One person in tblNames can have Many contact detail in tblContactDetails Back … Explore …

Primary & Foreign Key … Relationships are created between the Primary Key in one table and the Foreign Key in another table Back … Next …

Primary & Foreign Key … Relationships are created between the Primary Key in one table and the Foreign Key in another table Back … Next …

Flat File Database … tblNames PK FirstName Surname Key Steve Jones 001 Bill Gates 002 Stephen Hawkins 003 FK tblContactDetails Email Mobile Telephone Person Key steve.jones@gmail.com 07765123456 0121 4568765 001 004 billgates@microsoft.com 07865423456 01455 587654 002 005 shawkins@gmail.com 07787654322 0116 5641234 003 006 Back … Explore …

Can you draw a diagram to show the relationships between each table Your Turn … Suppose we are going to create a relational database of students and subjects Each student can study up to 5 classes A teacher can teach 3 classes Where will you start? Can you draw a diagram to show the relationships between each table Teachers Notes … Use the database planning tables to help plan the structure of this database This can be linked into the next lesson on relational databases You may want to use A3 sheets of paper to allow students to draw the relationships between different tables Explore …

Thought Board … A database is just a collection of data Database key terms … Data Table Record Field Field Name Flat File and Relational Databases Explore …