1.3.2) Databases Flashcards

1
Q

What is an entity?

A

An item of interest about which information is stored

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

What is a relational database?

A

A database which recognises the differences between entities by creating tables for each entity.

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

What is an attribute?

A

The characteristics of an entity

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

What is a flat file?

A

A database that consists of a single file

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

What is a primary key?

A

A unique identifier for each record in the table (eg. an ID number)

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

What is a foreign key?

A

The attribute which links two tables together (eg. Tom plays for Man City, Tom is the primary key and Man City is the foreign key)

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

What is a Secondary Key?

A

A key that allows the database to be searched quickly. (eg surname/email)

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

What is a one to one relationship?

A

An entity that can only be linked to one other entity (eg husband and wife)

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

What is a one to many relationship?

A

An entity that can be linked to multiple different entities (eg mother to kids)

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

What is many to many?

A

one entity can be associated with many other entities and the same applies the other way round (eg courses and students)

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

What is 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
12
Q

what does normalisation try to accomplish? (4)

A

Unnecessary duplicates, consistent data throughout linked tables, records can be added and removed without issues, complex queries can be carried out

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

What are the rules for first normal form? (3)

A
  1. Each row is unique.
  2. No cell has more than one value.
  3. There are no repeating groups.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the rule for second normal form?

A

All data must depend on the primary key

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

What are the rules for third normal form?

A

The primary key must fully define all non-key columns, and non-key columns must not depend on any other key

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

What is indexing?

A

A method used to store the position of each record ordered by a certain attribute

17
Q

what are some examples of capturing data methods?

A

Manual, magnetic ink character recognition, optical mark recognition, optical character recognition

18
Q

What does SQL stand for?

A

Structured query language

19
Q

What is SQL?

A

A declarative language used to manipulate databases

20
Q

how would you select the name of a student called Bob from an SQL file called students?

A

SELECT studentname FROM students WHERE studentname= “Bob”

21
Q

How would you order an SQL file?

A

ORDER BY attribute

22
Q

How how do you use the join function in SQL?

A

SELECT file1.att, file2.att FROM file1 JOIN file 2 ON att1=att2

23
Q

What is a One to One relationship?

A

An entity only linked to one other entity (eg husband and wife)

24
Q

What is a one to many relationship?

A

One entity that can be associated with many other tables (eg a doctor having multiple patients)

25
Q

What is a many to many relationship?

A

One entity can be associated with many other entities and the same applies the other way round (eg students and courses)

26
Q

What is normalisation?

A

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

27
Q

What does normalisation attempt to accomplish? (4)

A
  • no redundancy (unnecessary duplicates)
  • consistent data throughout linked tables
  • records that can be added and removed without issues
  • complex queries can be carried out
28
Q

What are the rules for First Normal Form?

A
  1. A cell must never contain more than one value
  2. Each row must be unique (every row has a unique identifier)
  3. Each column name must be unique
  4. There must be no repeating groups (these should be moved into a new table)
29
Q

What are the rules for 2NF?

A

All data must depend on the primary key

30
Q

What are the rules for 3NF?

A

The primary key must fully define all non-key columns and non-key columns must not depend on any other key

31
Q

What is Indexing?

A

a method used to store the position of each record ordered by a certain attribute

32
Q

What does the CREATE function do?

A

Allow you to make new databases

33
Q

what details must be specified when using the create function?

A

Whether it is the primary key, it’s data to type, whether it must be filled in

34
Q

what does the alter function do?

A

Add, delete or modify the columns in the table

35
Q

What is referential integrity?

A

The process of ensuring consistency and ensuring necessary data isn’t deleted