1.3 Exchanging data [1.3.2]

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

What is a database?

An organized collection of data that is stored electronically

2
New cards

What is a relational database?

A database that has a relationship

3
New cards

What are the types of relationships?

One to one, one to many, many to many

4
New cards

What is a primary key?

A key that can identify each attribute separately

5
New cards

What is a secondary key?

A key that can be used to quickly search for an item in a table

6
New cards

What is a foreign key?

A key that allows you to establish a relationship with another table

7
New cards

What is normalisation?

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

8
New cards

What is the First Normal Form (1NF)?

This is where the relational database contains no repeating attributes

9
New cards

What is the Second Normal Form (2NF)?

This is where the relational database is in 1NF and contains no partial dependencies

10
New cards

What is the Third Normal Form (3NF)?

This is where the relational database is in 2NF and has no non key dependencies

11
New cards

What is SQL used for?

Structured Query Language allows for fast and efficient retrieval, deletion and manipulation of data

12
New cards

How do you select data?

SELECT population
FROM world
WHERE name = "Albania"

13
New cards

What is a wildcard?

A single character can be used to represent all fields of a table

14
New cards

How do you insert data?

INSERT INTO world (name, capital, population)
VALUES ("Oz", "Emerald City", 1000000)

15
New cards

How do you delete data?

DELETE FROM world
WHERE name LIKE = "Al%"

16
New cards

How do you join tables?

JOIN Tutor_Group
ON Student.Tutorgroup = Tutor_Group.Tutorgroup

17
New cards

How do you delete a table

DROP TABLE <table name>