1.3.2 Databases Flashcards

1
Q

Define Entity

A

An entity is an item of interest about which information is stored.
e.g. doctor/patient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define relational database

A

A relational database is a database which recognises the differences between entities by creating different tables for each entity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define primary key

A

A primary key is a unique identifier for each record in the table.
e.g. CarID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define foreign key

A
  • 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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define secondary key

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define normalisation

A

The process of coming up with the best possible layout for a relational database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Why the fields ‘‘Artist” “Title” “Length” is not suitable to be a primary key (2)

A
  • A primary key must have a unique value for every record
  • The value for all these fields coule repeated
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define indexing

A
  • 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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Give advantage and disadvantage of indexing the field Artist

A
  • Advantage: Searches of Artist can be performed more quickly
  • Disadvantage: The index takes upextra space in the database.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

5 rules for first normal form

A
  1. All field names must be unique
  2. Values in fields should be from the same domain - only integers can be stored in ‘age’
  3. Values in fields should be atomic - single value in each grid
  4. No two records can be identical
  5. Each table needs a primary key
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

2 rules to get second normal form

A
  1. The data is already in 1NF
  2. Any partial dependencies have been removed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

2 rules to get third normal form

A
  1. The data is already in 2NF
  2. 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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How does a file written out

A

Entity (primaryKey, Attribute2, Attribute3)
primaryKey should be underlined

e.g. Car(CarID, Age. Price)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Define capturing data

A

Input data into database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Methods of capturing data

A
  1. Optical Mark Recognition - used for multiple choice on a test
  2. Optical Character Recognition - extract the text in a picture by interpreting the shape of letters - car number plate recognition
  3. Parper-based forms - manual method
  4. Magnetic stripes - bank card
  5. Barcodes
  6. Sensors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is SQL

A
  • Structured Query Language
  • Declarative language used to manipulate database
17
Q

What is the format for SQL selection

A

SELECT field1,field2
FROM entity
WHERE field3 = ‘any value valid’

18
Q

ordered by SQL

A

ORDERED BY field (ascending)
ORDERED BY field Desc (descnding)