Lesson 1: Intro to Database Design and SQL Flashcards

1
Q

Data

A

Raw facts that need to be processed to become meaningful and useful

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

Database

A

A collection of related data that is organized so that it can be easily accessed, managed, and updated. A file cabinet could be considered a paper database. This SQL course is about electronic databases.

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

Database Management System

A

The software that handles the storage, retrieval, and updating of the data in the computer system.

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

Information

A

Data that has been processed and has meaning and context; it can be used to make decisions.

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

Relational Database

A

A database where the data is stored in a table format with rows and columns. Each table is related to another table through a primary key.

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

Column

A

One data item that is a field in a table. For example: name, gender, birthdate

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

Data Integrity

A

The assurance of the accuracy and consistency of the data.

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

Data Redundancy

A

Data that is duplicated in the database. This should be minimized by the design of the tables.

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

Field/Columns

A

The column in a database table. It is one type of data.

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

Foreign Key (FK)

A

The FOREIGN KEY is a key that is used to connect two tables. The FOREIGN KEY is a column or columns in one table that refers to the PRIMARY KEY column in another table.

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

Null

A

A field with no value. It is left blank.

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

Primary Key (PK)

A

The primary key is a column or columns that uniquely identifies each row in the table. It cannot be left blank.

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

Record

A

A row in a database table. It is a collection of data fields about one item. When you start writing SQL query statements, we will refer to a record as a row

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

Relationship

A

The link that connects relational database tables.

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

Row

A

One record in a table made up of several columns. Same as the record

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

Table

A

A collection of data about one person, place, or thing. It is made up of columns (fields) and rows (records).