IST359 - Relational Database Model

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:38 PM on 9/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

table

A primary unit of storage in the relational model, a 2D structure consisting of rows and columns.

2
New cards

relation

A table with a column (or set of columns) for which the data in those columns can be used to find one unique row.

3
New cards

column

Represents a category of data in a relational table. For example in a table of customers, this would be the customer phone number.

4
New cards

row

Represents an instance of data in a relational table. For example in a table of students this might be YOU.

5
New cards

attribute

Represents one atomic member of a table at the intersection of a row and a column.

6
New cards

physical domain

The acceptable data type for a column in a table.

7
New cards

logical domain

The set of values which are acceptable for a column in a table.

8
New cards

constraint

A rule or condition which restricts allowable data in either a table or a column.

9
New cards

default value

A constraint where specific data is used when one is not specified.

10
New cards

check constraint

A condition which must be "true" prior to data being added or changed.

11
New cards

Unique constraint

A condition which forbids duplicate values in a column or group of columns.

12
New cards

primary key

A constraint on a column or group of columns which uniquely identifies each row in a table.

13
New cards

foreign key

A constraint on a column or set of columns which ensure is values come from another table's primary key values.

14
New cards

surrogate key

An auto-generated value, typically used as primary key.

15
New cards

candidate key

Any column or set of columns which could function as a primary key

16
New cards

null

A special value which means "the absence of a value" or "no value."

17
New cards

entity integrity

Each row in a table must be uniquely identifiable. Any table with a primary key constraint has this characteristic.

18
New cards

referential integrity

The column must either contain null or a value which is a primary key in another table. Any table with a foreign key constraint has this characteristic.