1.3.2 Databases Flashcards
Define Entity
An entity is an item of interest about which information is stored.
e.g. doctor/patient
Define relational database
A relational database is a database which recognises the differences between entities by creating different tables for each entity.
Define primary key
A primary key is a unique identifier for each record in the table.
e.g. CarID
Define foreign key
- A foreign key is the attribute which links two tables together.
- The foreign key will exist in one table as the primary key and act as the foreign key in another.
Define secondary key
- A key other than primary key that used to identify a record.
- Might be same for some records
- Allows a database to be searched quickly
Define normalisation
The process of coming up with the best possible layout for a relational database
Why the fields ‘‘Artist” “Title” “Length” is not suitable to be a primary key (2)
- A primary key must have a unique value for every record
- The value for all these fields coule repeated
Define indexing
- A method used to store the position of each record ordered by a certain attribute
- The primary key is automatically index
- Secondary keys are index to used for searching
If secondary key not index, the searching progress will be :
Row 1: Check if AuthorID = 102 (No, move to the next row)
Row 2: Check if AuthorID = 102 (Yes, include in the result)
Row 3: Check if AuthorID = 102 (No, move to the next row)
If it is index :
Row 1: Not checked individually, as the index directly located the relevant row.
Row 2: Retrieved based on the index entry.
Give advantage and disadvantage of indexing the field Artist
- Advantage: Searches of Artist can be performed more quickly
- Disadvantage: The index takes upextra space in the database.
5 rules for first normal form
- All field names must be unique
- Values in fields should be from the same domain - only integers can be stored in ‘age’
- Values in fields should be atomic - single value in each grid
- No two records can be identical
- Each table needs a primary key
2 rules to get second normal form
- The data is already in 1NF
- Any partial dependencies have been removed
2 rules to get third normal form
- The data is already in 2NF
- Any transitive dependencies have been removed
Otherwise it is
No any field depends on any field other than primary key
Otherwise it is susceptible to becoming inconsistent
How does a file written out
Entity (primaryKey, Attribute2, Attribute3)
primaryKey should be underlined
e.g. Car(CarID, Age. Price)
Define capturing data
Input data into database
Methods of capturing data
- Optical Mark Recognition - used for multiple choice on a test
- Optical Character Recognition - extract the text in a picture by interpreting the shape of letters - car number plate recognition
- Parper-based forms - manual method
- Magnetic stripes - bank card
- Barcodes
- Sensors
What is SQL
- Structured Query Language
- Declarative language used to manipulate database
What is the format for SQL selection
SELECT field1,field2
FROM entity
WHERE field3 = ‘any value valid’
ordered by SQL
ORDERED BY field (ascending)
ORDERED BY field Desc (descnding)