Database Systems Terms

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/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:58 PM on 8/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

DB schema

The description of a database.

Includes descriptions of the database structure and the constraints

2
New cards

Schema diagram

A diagrammatic display of (some aspects of) a database schema

<p>A diagrammatic display of (some aspects of) a database schema</p>
3
New cards

Relation

A collection of a set of data consisting of tuples and attributes.

Another word for table

4
New cards

Tuple

Each row of a table

5
New cards

Attribute

Each column of a table

6
New cards

Degree

The number of attributes (columns) in a table

7
New cards

Cardinality

The number of tuples (rows) in a table

8
New cards

Mini world

Some part of the real world about which data is stores in a database.

Example: student grades and transcripts at a university

9
New cards

Entity

A thing, person, place, unit, object, or any item about which the data should be captured and stored in the form of tables.

10
New cards

Simple attribute

An attribute where each entity has a single atomic value

<p>An attribute where each entity has a single atomic value</p>
11
New cards

Composite attribute

An attribute that may be composed of several components

<p>An attribute that may be composed of several components</p>
12
New cards

Multi-valued attribute

An attribute where an entity may have multiple values

13
New cards

Key attributes

An attribute of an entity type for which each entity must have a unique value

14
New cards

Candidate key

A single column or a group of multiple columns that uniquely identify each table record.

In other words, it is a key that can be a primary key.

There are no duplicates, it is unique to each record, and there are no null values

15
New cards

Primary key

Used to uniquely identify each table record.

Must be unique or must have a unique value, and cannot have a null value.

16
New cards

Foreign key

A single column or a group of multiple columns corresponding to the value of the primary key in another table

17
New cards

Alternate key

A secondary key after determining a primary key

18
New cards

Super key

A single column or a group of multiple columns that can uniquely identify each table record.

Similar to a candidate key, but it must meet uniqueness

19
New cards

Unique key

The same as a primary key, but can accept up to one null value