Information handling software

Slides:



Advertisements
Similar presentations
Databases. A database program can be used to:  sort a file into a different order  Maintain contact with clients  search through the records for a.
Advertisements

Databases. What is a database? It is a collection of information, which can be searched and sorted. It can be information about anything. Toys, pupils,
Information Storage and Retrieval CS French Chapter 3.
USING MS ACCESS TO ANALYSE PAYROLL INFORMATION The Budget Officer’s Perspective of HR/Payroll Records NWDUG 2001.
CORE 2: Information systems and Databases STORAGE & RETRIEVAL 2 : SEARCHING, SELECTING & SORTING.
Computer Science & Engineering 2111 Introduction to Database Management Systems Relationships and Database Creation 1 CSE 2111 Introduction to Database.
DATA, DATABASES, AND QUERIES Managing Data in Relational Databases CS1100Microsoft Access - Introduction1.
DATA, DATABASES, AND QUERIES Managing Data in Relational Databases CS1100Microsoft Access - Introduction1 Created By Martin Schedlbauer
Quick Start Guide: Filters Advanced Learn about: 1.What filters are and their functionality 2.How to create a filter using Samples, Equipment & Labels.
Querying and Sorting IT Key Ideas, Dynamic Database Systems, 2002 Chapter 3.
ACCESS CHAPTER 1. OBJECTIVES Tables Queries Forms Reports Primary and Foreign Keys Relationship.
FireRMS SQL Audit, Archiving & Purging Presented by Laura Small FireRMS Quality Assurance.
Unit 18: Database Modelling
Tuen Mun Government Secondary School Computer Literacy Project-based Learning Group members : * Mo Yan Ki (32) Chen Ying Ying (5) Lee Wing Ki (27) Yeung.
Introduction to SQL Steve Perry
**Database Notes** New Unit Plan Microsoft Access - known as a database management system or DBMS Database – a collection of organized information. Can.
Slide 1 St Andrew’s High School Standard Grade Computing Databases Standard Grade Computing Studies.
Manipulating data. Manipulating data means: Putting it into a structure (e.g., tables in a database) Putting it into a computer model.
1 By: Nour Hilal. Microsoft Access is a database software where data is stored in one or more Tables. A Database is a group of related Tables. Access.
Software. Records Fields Each record is made up of fields – categories of information. The fields here are Name, Surname, Address, Telephone and Date.
Slide 1 Standard Grade Computing Databases. Slide 2 Standard Grade Computing Definitions DatabaseA database is a structured collection of similar information.
5 5 Data types Logical/Boolean Has only two alternatives: Yes or no, on or off true or false Text/Alphanumeric Refers to all letters and numbers and other.
Manipulating data Data management: validation and verification.
Databases The Kingsway School. Database Systems Databases are programs which store information in a logical way. Databases have a structure which helps.
CS1100: Microsoft Access Managing Data in Relational Databases Created By Martin Schedlbauer CS11001Microsoft Access - Introduction.
Topic 1: Introduction to SQL. SQL stands for Structured Query Language. SQL is a standard computer language for accessing and manipulating databases SQL.
Introduction to Database Tonga Institute of Higher Education NOS 215.
What have we learned?. What is a database? An organized collection of related data.
26 Mar 04 1 Application Software Practical 5/6 MS Access.
Database revision.
Summary Queries Query Wizard –This is a choice once you select fields –Much easier to develop some summary queries with the wizard, then learn how to do.
Computing and Information Science 1 Databases START.
Databases.  A database is simply a collection of information stored in an orderly manner.  A database can be as simple as a birthday book, address book.
1 MS Access. 2 Database – collection of related data Relational Database Management System (RDBMS) – software that uses related data stored in different.
1 Algorithms Queues, Stacks and Records stored in Linked Lists or Arrays.
Microsoft Office 2013 Try It! Chapter 4 Storing Data in Access.
Data Admin home page. New (unmatched) record Identity record.
QUERY CONSTRUCTION CS1100: Data, Databases, and Queries CS1100Microsoft Access1.
Edexcel OnCourse Databases Unit 9. Edexcel OnCourse Database Structure Presentation Unit 9Slide 2 What is a Database? Databases are everywhere! Student.
1 Section 1 - Introduction to SQL u SQL is an abbreviation for Structured Query Language. u It is generally pronounced “Sequel” u SQL is a unified language.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Tables & Relationships
Microsoft Office Access 2010 Lab 3
Databases.
Databases.
3.5 Databases Relationships.
Databases – exercises in Microsoft Access 2013
Database Systems Unit 16.
The Database Exercises Fall, 2009.
Introduction to Database Systems
Process & Logic Modeling
Lesson 1: Databases.
Databases and Information Management
Databases.
The Plant Database.
Database Design and Development
Database Design and Development
Databases and Information Management
BUSINESS COMPUTER TECHNOLOGY
Introduction To Structured Query Language (SQL)
Spreadsheets, Modelling & Databases
RiskMan Personal Delegates
Non-selection queries
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.
BUSINESS COMPUTER TECHNOLOGY
GCSE Computer Science: OCR Programming Paper
IT Solutions for Administrators - Databases
Index Structures Consider a relation Employees (eid, name, salary, age, did) stored as a heap file (unsorted) for which the only index is an unclustered.
Presentation transcript:

Information handling software

Information handling software Any software used to store, manipulate and output information. Covers: Database software Databases created using spreadsheet software Stores of music, sounds, photographs.

Updating, deleting and searching records Update – change the data to bring up-to-date. Delete – remove data no longer needed. Search – look for specific records that match certain criteria (e.g., list the names of all students in Year 11).

Search criteria using operators Operators are used to construct search criteria and include: = equals > greater than < less than <> not equal to >= greater than or equal to <= less than or equal to

Examples of operators being used = Patel (in a surname field finds data for people with surname Patel). = 20 (in a quantity field finds data for all occurrences where the quantity is 20). >01/02/10 (in a date field finds the data for all the dates after (but not including) 01/02/10). <>0 (in a quantity field finds the data where the quantity does not equal zero).

Joining operators Operators can be joined by AND or OR Size = XL AND Type = Shirt The above will find all the extra large shirt details Pet = Dog OR Pet = Cat The above will find details for dogs or cats

What do these searches do? Pupil ID Surname Age Free meals Form 11901 Duggan 15 N 11G 11809 Hughes Y 11T 11900 Lee 11907 Liu 11877 Khan 16 11M Pupil ID = 11809 Age >15 Free meals = Y AND Age <16 Form = 11T OR Free meals = Y Surname = Lee

Answers Displays one record for pupil with pupil ID 11809 (i.e., pupil with surname Hughes). Displays all the details of pupils whose age is over 15 (i.e., the details of all 16-year-old pupils in this set of data). Displays data of all who have free meals and are under 16. Displays data for pupils who have free meals or who are in Form 11T. Displays the details for pupils with the surname Lee.